From 0d0d96443a4f330f1959bdee46745a32492e722b Mon Sep 17 00:00:00 2001 From: nir0s Date: Sat, 21 Nov 2020 08:24:28 +0200 Subject: [PATCH] Fix CircleCI config --- .circleci/config.yml | 2 +- dev-requirements.txt | 6 ++---- tox.ini | 1 - 3 files changed, 3 insertions(+), 6 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index f548df4..20ebd91 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -34,7 +34,7 @@ jobs: command: | . .venv/bin/activate make testone TOX_ENV=$TOX_ENV - - run: . venv/bin/activate && codecov + - run: . .venv/bin/activate && pip install codecov && codecov - save_cache: paths: - .tox/$TOX_ENV diff --git a/dev-requirements.txt b/dev-requirements.txt index 7c6b203..92dda5f 100644 --- a/dev-requirements.txt +++ b/dev-requirements.txt @@ -5,7 +5,5 @@ pylint==2.6.0 pytype==2020.8.28 pytest==6.0.1 pytest-cov==2.10.1 -mock==4.0.2 -isort==5.5.1 -pre-commit==2.7.1 -black==20.8b1 +pre-commit==2.7.1; python_version > '3.5' +black==20.8b1; python_version > '3.5' diff --git a/tox.ini b/tox.ini index 15075ef..26c5650 100644 --- a/tox.ini +++ b/tox.ini @@ -6,7 +6,6 @@ skip_missing_interpreters = true [testenv] deps = -rdev-requirements.txt - codecov passenv = CI commands = pytest --cov-report term-missing --cov wryte tests -v