diff options
author | MarcoFalke <*~=`'#}+{/-|&$^_@721217.xyz> | 2023-05-24 15:09:13 +0200 |
---|---|---|
committer | MarcoFalke <*~=`'#}+{/-|&$^_@721217.xyz> | 2023-05-29 09:16:21 +0200 |
commit | aaaa4326035c889a7be59cfe738986ae5581d5ac (patch) | |
tree | f074cea9846729187c5c77a3a1d8abf2a56fa7f6 | |
parent | fa7a87bc7c3468024c6aa05cda23c575b1cf707a (diff) |
ci: Remove "default" test env
It is unclear what the point is of maintaining a "default", the meaning
of which is unclear.
-rw-r--r-- | ci/README.md | 6 | ||||
-rwxr-xr-x | ci/test/00_setup_env.sh | 2 |
2 files changed, 0 insertions, 8 deletions
diff --git a/ci/README.md b/ci/README.md index d014565f44..b4158d0183 100644 --- a/ci/README.md +++ b/ci/README.md @@ -20,12 +20,6 @@ requires `bash`, `docker`, and `python3` to be installed. To install all require sudo apt install bash docker.io python3 ``` -To run the default test stage, - -``` -./ci/test_run_all.sh -``` - To run the test stage with a specific configuration, ``` diff --git a/ci/test/00_setup_env.sh b/ci/test/00_setup_env.sh index 532c8280ba..69fd05051e 100755 --- a/ci/test/00_setup_env.sh +++ b/ci/test/00_setup_env.sh @@ -46,8 +46,6 @@ export TEST_RUNNER_TIMEOUT_FACTOR=${TEST_RUNNER_TIMEOUT_FACTOR:-40} export TEST_RUNNER_ENV=${TEST_RUNNER_ENV:-} export RUN_FUZZ_TESTS=${RUN_FUZZ_TESTS:-false} -export CONTAINER_NAME=${CONTAINER_NAME:-ci_unnamed} -export CI_IMAGE_NAME_TAG=${CI_IMAGE_NAME_TAG:-ubuntu:20.04} # Randomize test order. # See https://www.boost.org/doc/libs/1_71_0/libs/test/doc/html/boost_test/utf_reference/rt_param_reference/random.html export BOOST_TEST_RANDOM=${BOOST_TEST_RANDOM:-1} |