@@ -149,9 +149,9 @@ jobs:
149
149
- name : Run tests
150
150
run : |
151
151
conda activate pymc-test
152
- python -m pytest -vv --cov=pymc --cov-report=xml --cov-report term --durations=50 $TEST_SUBSET
152
+ python -m pytest -vv --cov=pymc --cov-report=xml --no-cov-on-fail -- cov-report term --durations=50 $TEST_SUBSET
153
153
- name : Upload coverage to Codecov
154
- uses : codecov/codecov-action@v2
154
+ uses : codecov/codecov-action@v3
155
155
with :
156
156
env_vars : TEST_SUBSET
157
157
name : ${{ matrix.os }} ${{ matrix.floatx }}
@@ -221,9 +221,9 @@ jobs:
221
221
# The ">-" in the next line replaces newlines with spaces (see https://stackoverflow.com/a/66809682).
222
222
run : >-
223
223
conda activate pymc-test &&
224
- python -m pytest -vv --cov=pymc --cov-report=xml --cov-report term --durations=50 %TEST_SUBSET%
224
+ python -m pytest -vv --cov=pymc --cov-report=xml --no-cov-on-fail -- cov-report term --durations=50 %TEST_SUBSET%
225
225
- name : Upload coverage to Codecov
226
- uses : codecov/codecov-action@v2
226
+ uses : codecov/codecov-action@v3
227
227
with :
228
228
env_vars : TEST_SUBSET
229
229
name : ${{ matrix.os }} ${{ matrix.floatx }}
@@ -295,9 +295,9 @@ jobs:
295
295
python --version
296
296
- name : Run tests
297
297
run : |
298
- python -m pytest -vv --cov=pymc --cov-report=xml --cov-report term --durations=50 $TEST_SUBSET
298
+ python -m pytest -vv --cov=pymc --cov-report=xml --no-cov-on-fail -- cov-report term --durations=50 $TEST_SUBSET
299
299
- name : Upload coverage to Codecov
300
- uses : codecov/codecov-action@v2
300
+ uses : codecov/codecov-action@v3
301
301
with :
302
302
env_vars : TEST_SUBSET
303
303
name : ${{ matrix.os }} ${{ matrix.floatx }}
@@ -364,9 +364,9 @@ jobs:
364
364
pip install git+https://github.com/blackjax-devs/[email protected]
365
365
- name : Run tests
366
366
run : |
367
- python -m pytest -vv --cov=pymc --cov-report=xml --cov-report term --durations=50 $TEST_SUBSET
367
+ python -m pytest -vv --cov=pymc --cov-report=xml --no-cov-on-fail -- cov-report term --durations=50 $TEST_SUBSET
368
368
- name : Upload coverage to Codecov
369
- uses : codecov/codecov-action@v2
369
+ uses : codecov/codecov-action@v3
370
370
with :
371
371
env_vars : TEST_SUBSET
372
372
name : JAX tests - ${{ matrix.os }} ${{ matrix.floatx }}
@@ -432,9 +432,9 @@ jobs:
432
432
# The ">-" in the next line replaces newlines with spaces (see https://stackoverflow.com/a/66809682).
433
433
run : >-
434
434
conda activate pymc-test &&
435
- python -m pytest -vv --cov=pymc --cov-report=xml --cov-report term --durations=50 %TEST_SUBSET%
435
+ python -m pytest -vv --cov=pymc --cov-report=xml --no-cov-on-fail -- cov-report term --durations=50 %TEST_SUBSET%
436
436
- name : Upload coverage to Codecov
437
- uses : codecov/codecov-action@v2
437
+ uses : codecov/codecov-action@v3
438
438
with :
439
439
env_vars : TEST_SUBSET
440
440
name : ${{ matrix.os }} ${{ matrix.floatx }}
0 commit comments