From 59a6a32a61a87f9a1cccb57c3b4df725384d34ae Mon Sep 17 00:00:00 2001 From: Stas Bekman Date: Mon, 31 Aug 2020 19:47:23 -0700 Subject: [PATCH] add a final report to all pytest jobs (#6861) we had it added for one job, please add it to all pytest jobs - we need the output of what tests were run to debug the codecov issue. thank you! --- .circleci/config.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index ef1da2791b..ab730b4091 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -84,7 +84,7 @@ jobs: key: v0.3-{{ checksum "setup.py" }} paths: - '~/.cache/pip' - - run: python -m pytest -n 8 --dist=loadfile -s ./tests/ --cov | tee output.txt + - run: python -m pytest -n 8 --dist=loadfile -rA -s ./tests/ --cov | tee output.txt - run: codecov - store_artifacts: path: ~/transformers/output.txt @@ -110,7 +110,7 @@ jobs: key: v0.3-torch-{{ checksum "setup.py" }} paths: - '~/.cache/pip' - - run: python -m pytest -n 8 --dist=loadfile -s ./tests/ | tee output.txt + - run: python -m pytest -n 8 --dist=loadfile -rA -s ./tests/ | tee output.txt - store_artifacts: path: ~/transformers/output.txt destination: test_output.txt @@ -135,7 +135,7 @@ jobs: key: v0.3-tf-{{ checksum "setup.py" }} paths: - '~/.cache/pip' - - run: python -m pytest -n 8 --dist=loadfile -s ./tests/ | tee output.txt + - run: python -m pytest -n 8 --dist=loadfile -rA -s ./tests/ | tee output.txt - store_artifacts: path: ~/transformers/output.txt destination: test_output.txt