From a0906068cfe337404f2e2f4d0328b04fa15945cf Mon Sep 17 00:00:00 2001 From: Lysandre Debut Date: Tue, 27 Oct 2020 18:14:13 +0000 Subject: [PATCH] Fully remove codecov (#8093) --- .circleci/config.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 325195c2aa..7d101673cf 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -79,13 +79,11 @@ jobs: - run: pip install --upgrade pip - run: pip install git+https://github.com/huggingface/datasets - run: pip install .[sklearn,tf-cpu,torch,testing] - - run: pip install codecov pytest-cov - save_cache: key: v0.3-{{ checksum "setup.py" }} paths: - '~/.cache/pip' - - run: RUN_PT_TF_CROSS_TESTS=1 python -m pytest -n 8 --dist=loadfile -rA -s ./tests/ -m is_pt_tf_cross_test --cov --durations=0 | tee output.txt - - run: codecov + - run: RUN_PT_TF_CROSS_TESTS=1 python -m pytest -n 8 --dist=loadfile -rA -s ./tests/ -m is_pt_tf_cross_test --durations=0 | tee output.txt - store_artifacts: path: ~/transformers/output.txt destination: test_output.txt