try ci without -rm

This commit is contained in:
Viktor Szakats 2025-02-26 11:17:12 +01:00
parent d7a9bc6637
commit dbc33efdf6
No known key found for this signature in database
GPG Key ID: B5ABD165E2AEF201
3 changed files with 3 additions and 3 deletions

View File

@ -145,7 +145,7 @@ if [ "${TFLAGS}" != 'skipall' ] && \
cmake --build _bld --config "${PRJ_CFG}" --target test-ci
else
(
TFLAGS="-a -p !flaky -r -rm ${TFLAGS}"
TFLAGS="-a -p !flaky -r ${TFLAGS}"
cd _bld/tests
./runtests.pl
)

View File

@ -107,7 +107,7 @@ curl_add_runtests(test-am "-a -am")
curl_add_runtests(test-full "-a -p -r")
# ~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-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-event "-a -e")

View File

@ -145,7 +145,7 @@ TEST_E = -a -e
TEST_NF = -a -p ~flaky ~timing-dependent
# 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
endif