File tree Expand file tree Collapse file tree 6 files changed +9
-7
lines changed
Expand file tree Collapse file tree 6 files changed +9
-7
lines changed Original file line number Diff line number Diff line change @@ -21,10 +21,12 @@ executors:
2121 # https://circleci.com/developer/images?imageType=machine
2222 image : windows-server-2022-gui:2024.12.1
2323 shell : bash.exe
24+ # https://circleci.com/docs/using-windows/#available-resource-classes
25+ # https://circleci.com/pricing/#comparison-table
2426 resource_class : windows.large
2527
2628orbs :
27- codecov : codecov/codecov@4.0.1
29+ codecov : codecov/codecov@5.3.0
2830
2931jobs :
3032 " general checks " :
@@ -221,7 +223,7 @@ jobs:
221223 - run : pip3 install tox
222224 - run : tox -e coverage-combine
223225 - codecov/upload :
224- file : coverage.xml
226+ flags : " -f coverage.xml"
225227
226228 " dry run releases " :
227229 executor : ubuntu_executor
Original file line number Diff line number Diff line change @@ -130,7 +130,7 @@ cp .env-sample .env # and optionally edit if needed to change git/python versio
130130``` shell script
131131# ... skipped ...
132132
133- source ../local-run-commons.sh tox
133+ source ../local-run-commons.sh
134134
135135export_directory_hash tox
136136cd " $( git rev-parse --show-toplevel) " /ci/tox/
Original file line number Diff line number Diff line change 22
33set -e -o pipefail -u -x
44
5- source " $( git rev-parse --show-toplevel) " /ci/local-run-commons.sh aur
5+ source " $( git rev-parse --show-toplevel) " /ci/local-run-commons.sh
66
77export_directory_hash aur
88cd " $( git rev-parse --show-toplevel) " /ci/aur/
Original file line number Diff line number Diff line change 22
33set -e -o pipefail -u -x
44
5- source " $( git rev-parse --show-toplevel) " /ci/local-run-commons.sh nixpkgs-build
5+ source " $( git rev-parse --show-toplevel) " /ci/local-run-commons.sh
66
77export_directory_hash nixpkgs-build
88cd " $( git rev-parse --show-toplevel) " /ci/nixpkgs-build/
Original file line number Diff line number Diff line change 22
33set -e -o pipefail -u
44
5- source " $( git rev-parse --show-toplevel) " /ci/local-run-commons.sh tox
5+ source " $( git rev-parse --show-toplevel) " /ci/local-run-commons.sh
66
77export_directory_hash tox
88cd " $( git rev-parse --show-toplevel) " /ci/tox/
Original file line number Diff line number Diff line change @@ -282,7 +282,7 @@ def slurp_file(path: str) -> str:
282282def is_terminal_fully_fledged () -> bool :
283283 try :
284284 stdout = popen_cmd ('tput' , 'colors' )[1 ]
285- number_of_supported_colors = int (stdout )
285+ number_of_supported_colors = int (stdout ) # in CI, this line is only covered by tests on macOS
286286 except Exception :
287287 # If we cannot retrieve the number of supported colors, let's defensively assume it's low.
288288 number_of_supported_colors = 8
You can’t perform that action at this time.
0 commit comments