##// END OF EJS Templates
ci: add the option to test more Python versions...
marmoute -
r52739:243e805e default
parent child Browse files
Show More
@@ -66,7 +66,7 rust-cargo-test:
66 variables:
66 variables:
67 CI_CLEVER_CLOUD_FLAVOR: S
67 CI_CLEVER_CLOUD_FLAVOR: S
68
68
69 test-c:
69 test-c: &test_c
70 <<: *runtests
70 <<: *runtests
71 variables:
71 variables:
72 RUNTEST_ARGS: " --no-rust --blacklist /tmp/check-tests.txt"
72 RUNTEST_ARGS: " --no-rust --blacklist /tmp/check-tests.txt"
@@ -99,6 +99,21 test-chg:
99 RUNTEST_ARGS: "--blacklist /tmp/check-tests.txt --chg"
99 RUNTEST_ARGS: "--blacklist /tmp/check-tests.txt --chg"
100 TEST_HGMODULEPOLICY: "c"
100 TEST_HGMODULEPOLICY: "c"
101
101
102 # note: we should probably get a full matrix for flavor × py-version, but this
103 # is a simple start to be able to check if we break the lowest supported
104 # version (and 3.12 have been giving us various troubles)
105 test-3.8-c:
106 <<: *test_c
107 when: manual # avoid overloading the CI by default
108 variables:
109 PYTHON: python3.8
110
111 test-3.12-c:
112 <<: *test_c
113 when: manual # avoid overloading the CI by default
114 variables:
115 PYTHON: python3.12
116
102 check-pytype:
117 check-pytype:
103 extends: .runtests_template
118 extends: .runtests_template
104 before_script:
119 before_script:
General Comments 0
You need to be logged in to leave comments. Login now