Skip to content

Commit aa27735

Browse files
committed
Finally fix cov call
1 parent 7b33109 commit aa27735

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.coveragerc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# .coveragerc to control coverage.py
22
[run]
33
branch = True
4+
include = "autoPyTorch/*"
45

56
[report]
67
# Regexes for lines to exclude from consideration

.github/workflows/pytest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
- name: Run tests
3434
run: |
3535
if [ ${{ matrix.code-cov }} ]; then
36-
codecov='--cov=autoPyTorch --cov-report=xml --cov-config=.coveragerc --cov-include="autoPyTorch/*"';
36+
codecov='--cov=autoPyTorch --cov-report=xml --cov-config=.coveragerc';
3737
fi
3838
python -m pytest --forked --durations=20 --timeout=600 --timeout-method=signal -v $codecov test
3939
- name: Check for files left behind by test

0 commit comments

Comments
 (0)