summaryrefslogtreecommitdiffhomepage
path: root/test
diff options
context:
space:
mode:
authorJoakim Hulthe <joakim.hulthe@mullvad.net>2024-10-01 16:27:02 +0200
committerJoakim Hulthe <joakim.hulthe@mullvad.net>2024-10-01 16:27:02 +0200
commitffa5d846607f680a35b59266845196c34971a2ba (patch)
tree576ffb14c14a666371f0fea2bd784f64ce411187 /test
parent5ed9fdaff6dcb709a0c1a4101c444c697cb948bc (diff)
parentfd8f186f7289760532ee0ed56c3405c5700e9822 (diff)
downloadmullvadvpn-ffa5d846607f680a35b59266845196c34971a2ba.tar.xz
mullvadvpn-ffa5d846607f680a35b59266845196c34971a2ba.zip
Merge branch 'rename-account_token-account_number-des-1029'
Diffstat (limited to 'test')
-rw-r--r--test/README.md2
-rwxr-xr-xtest/scripts/ci-runtests.sh2
-rwxr-xr-xtest/test-by-version.sh2
3 files changed, 3 insertions, 3 deletions
diff --git a/test/README.md b/test/README.md
index 6aaff56d2f..112edb65d9 100644
--- a/test/README.md
+++ b/test/README.md
@@ -166,4 +166,4 @@ cargo run --bin test-manager run-tests --vm macos-ventura \
## Note on `scripts/ci-runtests.sh`
-`scripts/ci-runtests.sh` is the script that GitHub actions uses to invokes the `test-manager`, with similar functionality as `test-by-version.sh`. Note that account tokens are read (newline-delimited) from the path specified by the environment variable `ACCOUNT_TOKENS`. Round robin is used to select an account for each VM.
+`scripts/ci-runtests.sh` is the script that GitHub actions uses to invokes the `test-manager`, with similar functionality as `test-by-version.sh`. Note that account numbers are read (newline-delimited) from the path specified by the environment variable `ACCOUNT_TOKENS`. Round robin is used to select an account for each VM.
diff --git a/test/scripts/ci-runtests.sh b/test/scripts/ci-runtests.sh
index 3e64894e74..4aeab28271 100755
--- a/test/scripts/ci-runtests.sh
+++ b/test/scripts/ci-runtests.sh
@@ -27,7 +27,7 @@ if [[ -z "${ACCOUNT_TOKENS+x}" ]]; then
exit 1
fi
if ! readarray -t tokens < "${ACCOUNT_TOKENS}"; then
- echo "Specify account tokens in 'ACCOUNT_TOKENS' file" 1>&2
+ echo "Specify account numbers in 'ACCOUNT_TOKENS' file" 1>&2
exit 1
fi
CI_LOGS_DIR="$TEST_DIR/.ci-logs"
diff --git a/test/test-by-version.sh b/test/test-by-version.sh
index 56e1354419..337a0dfe83 100755
--- a/test/test-by-version.sh
+++ b/test/test-by-version.sh
@@ -6,7 +6,7 @@ usage() {
echo "This script downloads and tests the given app version from the build repositories."
echo
echo "Required environment variables:"
- echo " - ACCOUNT_TOKEN: Valid MullvadVPN account token"
+ echo " - ACCOUNT_TOKEN: Valid MullvadVPN account number"
echo " - TEST_OS: Name of the VM configuration to use. List available configurations with 'cargo run --bin test-manager list'"
echo "Optional environment variables:"
echo " - APP_VERSION: The version of the app to test (defaults to the latest stable release)"