You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+9-6
Original file line number
Diff line number
Diff line change
@@ -71,17 +71,20 @@ GitHub actions are defined in the `*.yml` files in the `.github/workflows` direc
71
71
72
72
#### Tests
73
73
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).
78
75
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).
80
83
81
84
The GitHub actions for running tests on the `main` and `dev` branch are almost identical. The only differences are:
82
85
- their name (used to display in the web interface)
83
86
- 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
85
88
86
89
The tests run on `push` and `pull_request` events of the respective branch or when triggered manually.
0 commit comments