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 7b33109 commit aa27735Copy full SHA for aa27735
.coveragerc
@@ -1,6 +1,7 @@
1
# .coveragerc to control coverage.py
2
[run]
3
branch = True
4
+include = "autoPyTorch/*"
5
6
[report]
7
# Regexes for lines to exclude from consideration
.github/workflows/pytest.yml
@@ -33,7 +33,7 @@ jobs:
33
- name: Run tests
34
run: |
35
if [ ${{ matrix.code-cov }} ]; then
36
- codecov='--cov=autoPyTorch --cov-report=xml --cov-config=.coveragerc --cov-include="autoPyTorch/*"';
+ codecov='--cov=autoPyTorch --cov-report=xml --cov-config=.coveragerc';
37
fi
38
python -m pytest --forked --durations=20 --timeout=600 --timeout-method=signal -v $codecov test
39
- name: Check for files left behind by test
0 commit comments