Skip to content

Commit

Permalink
Allow running only a single e2e test
Browse files Browse the repository at this point in the history
  • Loading branch information
andreaswolf committed Sep 3, 2024
1 parent 10e0417 commit c973929
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion e2e/run-test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,12 @@ cd $TESTS_BASE_DIR
rm -r composer.lock vendor || true
composer install

for TEST_DIR in typo3-typoscript typo3-xml typo3-yaml
ALL_TESTS="no-config-file typo3-typoscript typo3-xml typo3-yaml"
TESTS_TO_RUN=${1:-$ALL_TESTS}

echo "Running tests: " $TESTS_TO_RUN

for TEST_DIR in $TESTS_TO_RUN
do
set +x
echo
Expand Down

0 comments on commit c973929

Please sign in to comment.