Skip to content

Commit ebe37ec

Browse files
committedMay 18, 2022
update README.md
1 parent 429140f commit ebe37ec

File tree

2 files changed

+10
-7
lines changed

2 files changed

+10
-7
lines changed
 

‎README.md

+9-6
Original file line numberDiff line numberDiff line change
@@ -71,17 +71,20 @@ GitHub actions are defined in the `*.yml` files in the `.github/workflows` direc
7171

7272
#### Tests
7373

74-
Adapt the `test_main.yml` and `test_dev.yml` by replacing the following:
75-
- `python-version: [...]`: Python versions to run the tests for (e.g. `["3.6", "3.7", "3.8", "3.9"]`)
76-
- `PythonPackageTemplate`: the name of your package chosen above
77-
- `bash <(curl -s https://codecov.io/bash -t <codecov_token>)`: your [codecov.io](https://about.codecov.io/) token (comment out if you do not want to use codecov.io)
74+
Replace the `test_template.py` file with some real tests for you package (at least, you have to replace `PythonPackageTemplate` with your package name for things to work).
7875

79-
Of course, you would want to replace the `test_template.py` file with some real tests for you package (at least, you have to replace `PythonPackageTemplate` with your package name).
76+
In `tests.yml` (for `main` branch) and `test_dev.yml` (for `dev` branch) adapt the following:
77+
- `os: [ubuntu-latest, macos-latest, windows-latest]`: operating systems to test for
78+
- `python-version: ["3.9", "3.10"]`: Python versions to test for
79+
- `PythonPackageTemplate`: the name of your package chosen above
80+
- `Upload coverage to Codecov`: you can delete this section if you do not want to use [codecov.io](https://about.codecov.io/) (remember to also remove the codecov badge above)
81+
- If you use codecov, you will have to enable the project in your account.
82+
- After the first report has been uploaded, you can get the correct coverage badge from there (incl. the token).
8083

8184
The GitHub actions for running tests on the `main` and `dev` branch are almost identical. The only differences are:
8285
- their name (used to display in the web interface)
8386
- the branch name (adapt if you use different names)
84-
- the line for publishing the code coverage results (only for `main`) TODO
87+
- test on `main` also upload code coverage reports
8588

8689
The tests run on `push` and `pull_request` events of the respective branch or when triggered manually.
8790

‎setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
setuptools.setup(
1010
name="PythonPackageTemplate",
11-
version="0.0.1",
11+
version="0.0.0",
1212
author="Robert Lieck",
1313
author_email="robert.lieck@durham.ac.uk",
1414
description="A template repo for Python packages with GitHub actions and documentation",

0 commit comments

Comments
 (0)
Please sign in to comment.