From 50f345288e4309d073fecdb0b44ff6c432645c82 Mon Sep 17 00:00:00 2001 From: Lars Wirzenius Date: Sun, 3 Dec 2023 08:44:53 +0200 Subject: tests: allow tests to run in offline mode Signed-off-by: Lars Wirzenius Sponsored-by: author --- check | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) (limited to 'check') diff --git a/check b/check index 24b73fe..bc9da92 100755 --- a/check +++ b/check @@ -6,28 +6,35 @@ set -euo pipefail quiet=-q hideok= +offline= + if command -v chronic >/dev/null; then hideok=chronic fi -if [ "$#" -gt 0 ]; then +while [ "$#" -gt 0 ]; do case "$1" in - verbose | -v | --verbose) + -v | --verbose) quiet= hideok= + shift + ;; + --offline) + offline=--offline + shift ;; esac -fi +done got_cargo_cmd() { cargo --list | grep " $1 " >/dev/null } # shellcheck disable=2086 -cargo build --all-targets $quiet +cargo build $offline --all-targets $quiet # shellcheck disable=2086 -got_cargo_cmd clippy && cargo clippy $quiet +got_cargo_cmd clippy && cargo clippy $offline $quiet got_cargo_cmd fmt && cargo fmt -- --check subplot docgen summain.subplot -o summain.html -- cgit v1.2.1