We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3090187 commit 76000bbCopy full SHA for 76000bb
.github/workflows/ci.yml
@@ -47,7 +47,12 @@ jobs:
47
python -m pip freeze
48
49
- name: Run tests
50
- run: python -m pytest -v --slow
+ run: |
51
+ pytest --cov=aiidalab_launch -v --slow
52
+ coverage json
53
+
54
+ - name: Upload coverage to Codecov
55
+ uses: codecov/codecov-action@v2
56
57
test-installation-with-pipx:
58
setup.cfg
@@ -48,6 +48,7 @@ pre_commit =
tests =
pytest==6.2.5
pytest-asyncio==0.17.2
+ pytest-cov==3.0.0
[flake8]
ignore =
0 commit comments