We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b07595b commit 70cd20bCopy full SHA for 70cd20b
ci/run_tests_dockerized.sh
@@ -14,4 +14,7 @@ PHP_VERSION=$1
14
15
DOCKER_IMAGE="tolerant-php-parser-test-runner:$PHP_VERSION"
16
docker build --build-arg="PHP_VERSION=$PHP_VERSION" --tag="$DOCKER_IMAGE" -f ci/Dockerfile .
17
-docker run --rm $DOCKER_IMAGE ci/run_tests.sh
+# Run all of the phpunit test suites in CI.
18
+# - Add the validation folder as a read-only volume for running "phpunit --testsuite validation"
19
+# (This is around 180MB, so it is not added to the docker image)
20
+docker run --volume="$PWD/validation:/tolerant-php-parser/validation:ro" --rm $DOCKER_IMAGE ci/run_tests.sh
0 commit comments