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 4b08041 commit 883a70eCopy full SHA for 883a70e
.github/workflows/run_tests.yml
@@ -32,9 +32,15 @@ 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
- name: Test with pytest
38
run: |
39
pytest --cov-config .coveragerc --cov-report html --cov=bayes_opt
40
- codecov
+ codecov
41
+
42
+ - name: Test with pytest
43
+ run: |
44
+ pytest --cov-report xml --cov=bayes_opt/
45
+ - name: Upload coverage to Codecov
46
+ uses: codecov/codecov-action@v3
0 commit comments