diff --git a/.azure/gpu-tests-fabric.yml b/.azure/gpu-tests-fabric.yml index ffd25ad3ab220..64088cc255f9c 100644 --- a/.azure/gpu-tests-fabric.yml +++ b/.azure/gpu-tests-fabric.yml @@ -142,7 +142,11 @@ jobs: python -m coverage report python -m coverage xml python -m coverage html - python -m codecov --token=$(CODECOV_TOKEN) --commit=$(Build.SourceVersion) \ + + # https://docs.codecov.com/docs/codecov-uploader + curl -Os https://uploader.codecov.io/latest/linux/codecov + chmod +x codecov + ./codecov --token=$(CODECOV_TOKEN) --commit=$(Build.SourceVersion) \ --flags=gpu,pytest,${COVERAGE_SOURCE} --name="GPU-coverage" --env=linux,azure ls -l workingDirectory: tests/tests_fabric diff --git a/.azure/gpu-tests-pytorch.yml b/.azure/gpu-tests-pytorch.yml index ceffccf8b6228..6d17e19e6dda5 100644 --- a/.azure/gpu-tests-pytorch.yml +++ b/.azure/gpu-tests-pytorch.yml @@ -181,7 +181,11 @@ jobs: python -m coverage report python -m coverage xml python -m coverage html - python -m codecov --token=$(CODECOV_TOKEN) --commit=$(Build.SourceVersion) \ + + # https://docs.codecov.com/docs/codecov-uploader + curl -Os https://uploader.codecov.io/latest/linux/codecov + chmod +x codecov + ./codecov --token=$(CODECOV_TOKEN) --commit=$(Build.SourceVersion) \ --flags=gpu,pytest,${COVERAGE_SOURCE} --name="GPU-coverage" --env=linux,azure ls -l workingDirectory: tests/tests_pytorch diff --git a/requirements/app/test.txt b/requirements/app/test.txt index 95925b0f38a9b..c4bb3c2e73e38 100644 --- a/requirements/app/test.txt +++ b/requirements/app/test.txt @@ -1,5 +1,4 @@ coverage==6.5.0 -codecov==2.1.12 pytest==7.2.2 pytest-timeout==2.1.0 pytest-cov==4.0.0 diff --git a/requirements/fabric/test.txt b/requirements/fabric/test.txt index ad9c0c13389fb..2fa59f99f1712 100644 --- a/requirements/fabric/test.txt +++ b/requirements/fabric/test.txt @@ -1,5 +1,4 @@ coverage==6.5.0 -codecov==2.1.12 pytest==7.2.2 pytest-cov==4.0.0 pytest-rerunfailures==10.3 diff --git a/requirements/pytorch/test.txt b/requirements/pytorch/test.txt index 3b40553666a87..c0e31ad0e7e34 100644 --- a/requirements/pytorch/test.txt +++ b/requirements/pytorch/test.txt @@ -1,5 +1,4 @@ coverage==6.5.0 -codecov==2.1.12 pytest==7.2.2 pytest-cov==4.0.0 pytest-forked==1.4.0