diff options
author | William Deegan <bill@baddogconsulting.com> | 2022-07-25 04:12:15 (GMT) |
---|---|---|
committer | William Deegan <bill@baddogconsulting.com> | 2022-07-25 04:12:15 (GMT) |
commit | 1c635444d934111aa32077bccec25c1d5f76363e (patch) | |
tree | 1cf64d7a4d12af0fd91fcf254ea66c1bf0aef709 | |
parent | 41b0831382603609dfd021cb4d5a0b2d9f06021d (diff) | |
download | SCons-1c635444d934111aa32077bccec25c1d5f76363e.zip SCons-1c635444d934111aa32077bccec25c1d5f76363e.tar.gz SCons-1c635444d934111aa32077bccec25c1d5f76363e.tar.bz2 |
reorder appveyor matrix to push coverage run to be the last since it always takes the longest
-rw-r--r-- | .appveyor.yml | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/.appveyor.yml b/.appveyor.yml index 30d6439..ef33953 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -25,17 +25,21 @@ install: # split builds into sets of four jobs due to appveyor per-job time limit environment: matrix: - - WINPYTHON: "Python36" - COVERAGE: 1 + + - WINPYTHON: "Python310" + COVERAGE: 0 - WINPYTHON: "Python37" COVERAGE: 0 - WINPYTHON: "Python38" COVERAGE: 0 + + - WINPYTHON: "Python36" + COVERAGE: 1 + + - - WINPYTHON: "Python310" - COVERAGE: 0 # remove sets of build jobs based on criteria below |