From 2d216d3d3d030a52750a22694eeab1eb92acc844 Mon Sep 17 00:00:00 2001 From: Hugo van Kemenade Date: Wed, 12 Apr 2023 18:27:57 +0300 Subject: [PATCH 1/3] Don't install unused and deleted codecov --- .ci/after_success.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.ci/after_success.sh b/.ci/after_success.sh index 23a6fcd4d..c71546f00 100755 --- a/.ci/after_success.sh +++ b/.ci/after_success.sh @@ -1,7 +1,7 @@ #!/bin/bash # gather the coverage data -python3 -m pip install codecov +python3 -m pip install coverage if [[ $MATRIX_DOCKER ]]; then python3 -m coverage xml --ignore-errors else From 3bb6344541a14f45ed1bfac3b0f7ff090be08423 Mon Sep 17 00:00:00 2001 From: Hugo van Kemenade Date: Wed, 12 Apr 2023 18:12:21 +0300 Subject: [PATCH 2/3] Replace deleted codecov package with bash uploader --- .appveyor.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.appveyor.yml b/.appveyor.yml index 9ed192e0f..47cbb55a8 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -52,8 +52,9 @@ test_script: #- '%PYTHON%\%EXECUTABLE% test-installed.py -v -s %TEST_OPTIONS%' TODO TEST_OPTIONS with pytest? after_test: -- python -m pip install codecov -- codecov --file coverage.xml --name %PYTHON% --flags AppVeyor +- curl -Os https://uploader.codecov.io/latest/windows/codecov.exe +- chmod +x codecov +- .\codecov.exe --file coverage.xml --name %PYTHON% --flags AppVeyor matrix: fast_finish: true From 087a5f889a2e0dd350f7f586b357207e1055356b Mon Sep 17 00:00:00 2001 From: Hugo van Kemenade Date: Thu, 13 Apr 2023 07:00:07 +0300 Subject: [PATCH 3/3] Remove chmod Co-authored-by: Andrew Murray <3112309+radarhere@users.noreply.github.com> --- .appveyor.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.appveyor.yml b/.appveyor.yml index 47cbb55a8..b2599e3d8 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -53,7 +53,6 @@ test_script: after_test: - curl -Os https://uploader.codecov.io/latest/windows/codecov.exe -- chmod +x codecov - .\codecov.exe --file coverage.xml --name %PYTHON% --flags AppVeyor matrix: