Skip to content

Commit ae1deba

Browse files
committed
renaming run_all_tests.sh to run_tests.sh
1 parent 1dc7cc4 commit ae1deba

1 file changed

Lines changed: 11 additions & 11 deletions

File tree

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -7,19 +7,19 @@ set -euo pipefail
77

88
# Simple, dependency-free orchestrator to run tests for all packages.
99
# Usage:
10-
# toolshed/run_all_tests.sh [ -v|--verbose ] [ --install | --no-install ] [ --with-cython | --skip-cython ]
11-
# toolshed/run_all_tests.sh [ flags ] # pathfinder -> bindings -> core
12-
# toolshed/run_all_tests.sh [ flags ] core # only core
13-
# toolshed/run_all_tests.sh [ flags ] bindings # only bindings
14-
# toolshed/run_all_tests.sh [ flags ] pathfinder # only pathfinder
15-
# toolshed/run_all_tests.sh [ flags ] smoke # meta-level import smoke tests
10+
# toolshed/run_tests.sh [ -v|--verbose ] [ --install | --no-install ] [ --with-cython | --skip-cython ]
11+
# toolshed/run_tests.sh [ flags ] # pathfinder -> bindings -> core
12+
# toolshed/run_tests.sh [ flags ] core # only core
13+
# toolshed/run_tests.sh [ flags ] bindings # only bindings
14+
# toolshed/run_tests.sh [ flags ] pathfinder # only pathfinder
15+
# toolshed/run_tests.sh [ flags ] smoke # meta-level import smoke tests
1616

1717
repo_root=$(cd "$(dirname "$0")/.." && pwd)
1818
cd "${repo_root}"
1919

2020
print_help() {
2121
cat <<'USAGE'
22-
Usage: toolshed/run_all_tests.sh [options] [target]
22+
Usage: toolshed/run_tests.sh [options] [target]
2323
2424
Targets:
2525
all (default) Run pathfinder → bindings → core
@@ -37,10 +37,10 @@ Options:
3737
-h, --help Show this help and exit
3838
3939
Examples:
40-
toolshed/run_all_tests.sh --install
41-
toolshed/run_all_tests.sh --no-install core
42-
toolshed/run_all_tests.sh -v --with-cython bindings
43-
toolshed/run_all_tests.sh smoke
40+
toolshed/run_tests.sh --install
41+
toolshed/run_tests.sh --no-install core
42+
toolshed/run_tests.sh -v --with-cython bindings
43+
toolshed/run_tests.sh smoke
4444
USAGE
4545
}
4646

0 commit comments

Comments
 (0)