Commit 906c5a7 1 parent c1ff8d9 commit 906c5a7 Copy full SHA for 906c5a7
File tree 2 files changed +6
-2
lines changed
2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change 48
48
poetry install --extras "all"
49
49
- name : Run tests
50
50
if : always()
51
- run : poetry run pytest --cov=blackboxopt tests | sed -n '/ -----------/,$p' > coverage.txt
51
+ # pipefail ensures that this step still fails when pytest fails
52
+ run : |
53
+ set -o pipefail
54
+ poetry run pytest --cov=blackboxopt tests | sed -n '/ -----------/,$p' > coverage.txt
55
+ shell : bash
52
56
# Note, this overrides the coverage file for each python version again.
53
57
# If different coverage is expected per python version, log separate artifacts.
54
58
- name : Upload coverage
Original file line number Diff line number Diff line change 1
- __version__ = "4.15.1 "
1
+ __version__ = "5.0.0 "
2
2
3
3
from parameterspace import ParameterSpace
4
4
You can’t perform that action at this time.
0 commit comments