mirror of
https://github.com/freqtrade/freqtrade.git
synced 2024-11-10 10:21:59 +00:00
Speed up ci by running coverage only where necessary
This commit is contained in:
parent
f2912f8815
commit
c1a7fc873d
6
.github/workflows/ci.yml
vendored
6
.github/workflows/ci.yml
vendored
|
@ -157,6 +157,12 @@ jobs:
|
|||
pip install -e .
|
||||
|
||||
- name: Tests
|
||||
if: (runner.os != 'Linux' || matrix.python-version != '3.8')
|
||||
run: |
|
||||
pytest --random-order
|
||||
|
||||
- name: Tests (with cov)
|
||||
if: (runner.os == 'Linux' && matrix.python-version == '3.8')
|
||||
run: |
|
||||
pytest --random-order --cov=freqtrade --cov-config=.coveragerc
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user