Skip to content

Commit 57ad6ef

Browse files
authored
Merge pull request #408 from fmfn/master
update from master to fix CI
2 parents 3c79930 + cf13889 commit 57ad6ef

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

.github/workflows/run_tests.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,11 @@ jobs:
3232
python -m pip install --upgrade pip
3333
pip install pytest
3434
pip install pytest-cov
35-
pip install codecov
35+
pip install coverage
3636
pip install -e .
37+
3738
- name: Test with pytest
3839
run: |
39-
pytest --cov-config .coveragerc --cov-report html --cov=bayes_opt
40-
codecov
40+
pytest --cov-report xml --cov=bayes_opt/
41+
- name: Upload coverage to Codecov
42+
uses: codecov/codecov-action@v3

0 commit comments

Comments
 (0)