Don't run longrun regularily

This commit is contained in:
Matthias
2020-12-23 15:46:08 +01:00
parent 0981287c62
commit b39de171c8
3 changed files with 20 additions and 0 deletions

View File

@@ -61,6 +61,12 @@ jobs:
- name: Tests
run: |
pytest --random-order --cov=freqtrade --cov-config=.coveragerc
if: matrix.python-version != '3.9'
- name: Tests incl. ccxt compatibility tests
run: |
pytest --random-order --cov=freqtrade --cov-config=.coveragerc --longrun
if: matrix.python-version == '3.9'
- name: Coveralls
if: (startsWith(matrix.os, 'ubuntu-20') && matrix.python-version == '3.8')