Skip to content

Commit 6d1293b

Browse files
Pass args on to docker, e.g. to enable -no-cache when the apt-get update at top appears out of date.
1 parent bf63e35 commit 6d1293b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

check.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@ root=`cd -- "$(dirname -- "$0")" && pwd`
2020
./pythenv.sh "$PYTHON" -m pytest -k "not __ci_" \
2121
tests shell/tests
2222
elif [ "docker" = "$1" ]; then
23-
docker build -f tests/Dockerfile -t bayeslite-test .
23+
shift
24+
docker build -f tests/Dockerfile -t bayeslite-test "$@" .
2425
else
2526
# If args are specified, run all tests, including continuous
2627
# integration tests, for the selected components.

0 commit comments

Comments
 (0)