From 04ec3a9c215ace68eb5f8d17d0c5c87ef68959a9 Mon Sep 17 00:00:00 2001 From: joncrall Date: Tue, 8 Sep 2020 11:05:14 -0400 Subject: [PATCH] wip --- .circleci/config.yml | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index f12eae43..692dbe4f 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -70,7 +70,8 @@ jobs: command: | . venv/bin/activate # pip install pytest-cov==2.8.1 # hack to avoid regression - python run_tests.py + #python run_tests.py + python -m pytest --cov=xdoctest --cov-config .coveragerc --cov-report term -s - store_artifacts: path: test-reports destination: test-reports @@ -107,7 +108,8 @@ jobs: command: | . venv/bin/activate # pip install pytest-cov==2.8.1 # hack to avoid regression - python run_tests.py + #python run_tests.py + python -m pytest --cov=xdoctest --cov-config .coveragerc --cov-report term -s - store_artifacts: path: test-reports destination: test-reports @@ -293,8 +295,9 @@ jobs: pip install . . venv/bin/activate + python -m pytest --cov=xdoctest --cov-config .coveragerc --cov-report term -s # pip install pytest-cov==2.8.1 # hack to avoid regression - python run_tests.py + #python run_tests.py # TO RUN A JOB ON YOUR LOCAL MACHINE @@ -304,5 +307,5 @@ jobs: JOB_NAME=test-minimal-pypy3 circleci local execute --job $JOB_NAME - JOB_NAME=test-minimal-pypy3 + JOB_NAME=test-full-pypy3 circleci local execute --job $JOB_NAME