From ddc6620f0975c5cbf8fff4cb6d865b160f098320 Mon Sep 17 00:00:00 2001 From: Akash <64683866+akamhy@users.noreply.github.com> Date: Mon, 20 Jul 2020 23:29:54 +0530 Subject: [PATCH] Only report coverage if python 3.8 or greater --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 235e5d3..949efa0 100644 --- a/.travis.yml +++ b/.travis.yml @@ -16,4 +16,4 @@ script: - cd tests - pytest --cov=./ after_success: - - python -m codecov + - if [[ $TRAVIS_PYTHON_VERSION >= 3.8 ]]; then python -m codecov; fi