There was an error while loading. Please reload this page.
2 parents 3c79930 + cf13889 commit 57ad6efCopy full SHA for 57ad6ef
.github/workflows/run_tests.yml
@@ -32,9 +32,11 @@ jobs:
32
python -m pip install --upgrade pip
33
pip install pytest
34
pip install pytest-cov
35
- pip install codecov
+ pip install coverage
36
pip install -e .
37
+
38
- name: Test with pytest
39
run: |
- pytest --cov-config .coveragerc --cov-report html --cov=bayes_opt
40
- codecov
+ pytest --cov-report xml --cov=bayes_opt/
41
+ - name: Upload coverage to Codecov
42
+ uses: codecov/codecov-action@v3
0 commit comments