try ci without -rm
This commit is contained in:
parent
d7a9bc6637
commit
dbc33efdf6
@ -145,7 +145,7 @@ if [ "${TFLAGS}" != 'skipall' ] && \
|
|||||||
cmake --build _bld --config "${PRJ_CFG}" --target test-ci
|
cmake --build _bld --config "${PRJ_CFG}" --target test-ci
|
||||||
else
|
else
|
||||||
(
|
(
|
||||||
TFLAGS="-a -p !flaky -r -rm ${TFLAGS}"
|
TFLAGS="-a -p !flaky -r ${TFLAGS}"
|
||||||
cd _bld/tests
|
cd _bld/tests
|
||||||
./runtests.pl
|
./runtests.pl
|
||||||
)
|
)
|
||||||
|
|||||||
@ -107,7 +107,7 @@ curl_add_runtests(test-am "-a -am")
|
|||||||
curl_add_runtests(test-full "-a -p -r")
|
curl_add_runtests(test-full "-a -p -r")
|
||||||
# ~flaky means that it ignores results of tests using the flaky keyword
|
# ~flaky means that it ignores results of tests using the flaky keyword
|
||||||
curl_add_runtests(test-nonflaky "-a -p ~flaky ~timing-dependent")
|
curl_add_runtests(test-nonflaky "-a -p ~flaky ~timing-dependent")
|
||||||
curl_add_runtests(test-ci "-a -p ~flaky ~timing-dependent -r -rm -j20")
|
curl_add_runtests(test-ci "-a -p ~flaky ~timing-dependent -r -j20")
|
||||||
curl_add_runtests(test-torture "-a -t -j20")
|
curl_add_runtests(test-torture "-a -t -j20")
|
||||||
curl_add_runtests(test-event "-a -e")
|
curl_add_runtests(test-event "-a -e")
|
||||||
|
|
||||||
|
|||||||
@ -145,7 +145,7 @@ TEST_E = -a -e
|
|||||||
TEST_NF = -a -p ~flaky ~timing-dependent
|
TEST_NF = -a -p ~flaky ~timing-dependent
|
||||||
|
|
||||||
# special CI target derived from nonflaky with CI-specific flags
|
# special CI target derived from nonflaky with CI-specific flags
|
||||||
TEST_CI = $(TEST_NF) -r -rm -j20
|
TEST_CI = $(TEST_NF) -r -j20
|
||||||
|
|
||||||
PYTEST = pytest
|
PYTEST = pytest
|
||||||
endif
|
endif
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user