Only report coverage if python 3.8 or greater

This commit is contained in:
Akash 2020-07-20 23:29:54 +05:30 committed by GitHub
parent 4066a65678
commit ddc6620f09
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -16,4 +16,4 @@ script:
- cd tests - cd tests
- pytest --cov=./ - pytest --cov=./
after_success: after_success:
- python -m codecov - if [[ $TRAVIS_PYTHON_VERSION >= 3.8 ]]; then python -m codecov; fi