##// END OF EJS Templates
ci: split the windows runtest invocation into more granular variables...
marmoute -
r53120:f514c5ac stable
parent child Browse files
Show More
@@ -294,22 +294,37 check-pytype:
294 - echo "Entering script section"
294 - echo "Entering script section"
295 - echo "python used, $Env:PYTHON"
295 - echo "python used, $Env:PYTHON"
296 - Invoke-Expression "$Env:PYTHON -V"
296 - Invoke-Expression "$Env:PYTHON -V"
297 - echo "$Env:HGTESTS_ALLOW_NETIO"
298 - echo "$Env:FLAVOR"
299 - echo "$Env:FILTER"
297 - echo "$Env:RUNTEST_ARGS"
300 - echo "$Env:RUNTEST_ARGS"
298 - echo "$Env:TMP"
301 - echo "$Env:TMP"
299 - echo "$Env:TEMP"
302 - echo "$Env:TEMP"
300
303
301 - C:/hgdev/MinGW/msys/1.0/bin/sh.exe --login -c 'cd "$OLDPWD" && HGTESTS_ALLOW_NETIO="$TEST_HGTESTS_ALLOW_NETIO" $PYTHON tests/run-tests.py --color=always $RUNTEST_ARGS'
304 - C:/hgdev/MinGW/msys/1.0/bin/sh.exe
305 --login -c 'cd "$OLDPWD"
306 && HGTESTS_ALLOW_NETIO="$TEST_HGTESTS_ALLOW_NETIO"
307 $PYTHON tests/run-tests.py
308 --color=always
309 $FLAVOR
310 $FILTER
311 $RUNTEST_ARGS;
312 '
313 variables:
314 RUNTEST_ARGS: ""
315 FLAVOR: ""
316 FILTER: "--blacklist ${TMP_WORK_DIR}/check-tests.txt"
302
317
303 windows:
318 windows:
304 extends: .windows-runtests
319 extends: .windows-runtests
305 variables:
320 variables:
306 RUNTEST_ARGS: "-j 8 --blacklist ${TMP_WORK_DIR}/check-tests.txt"
321 RUNTEST_ARGS: "-j 8"
307
322
308 windows-pyox:
323 windows-pyox:
309 extends: .windows-runtests
324 extends: .windows-runtests
310 when: manual # pyoxidizer builds seem broken with --no-use-pep517
325 when: manual # pyoxidizer builds seem broken with --no-use-pep517
311 variables:
326 variables:
312 RUNTEST_ARGS: "--blacklist ${TMP_WORK_DIR}/check-tests.txt --pyoxidized"
327 FLAVOR: "--pyoxidized"
313
328
314 macos:
329 macos:
315 extends: .test-c
330 extends: .test-c
General Comments 0
You need to be logged in to leave comments. Login now