We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6741f52 commit 8edc86cCopy full SHA for 8edc86c
.github/workflows/testing.yml
@@ -73,4 +73,10 @@ jobs:
73
- name: Test with pytest
74
run: |
75
cd tests
76
- pytest
+ pytest --cov=kliff --cov-report=xml
77
+
78
+ - uses: codecov/codecov-action@v4
79
+ if: matrix.os == 'ubuntu-latest' && matrix.python-version == '3.10' && github.repository == 'openkim/kliff'
80
+ with:
81
+ token: ${{ secrets.CODECOV_TOKEN }}
82
+ file: ./coverage.xml
setup.py
@@ -117,6 +117,7 @@ def get_readme():
117
extras_require={
118
"test": [
119
"pytest",
120
+ "pytest-cov",
121
"kimpy",
122
"emcee",
123
"ptemcee @ git+https://github.com/yonatank93/ptemcee.git@enhance_v1.0.0",
0 commit comments