You are here

test.sh in EVA: Entity Views Attachment 8.2

Same filename and directory in other branches
  1. 8 tests/eva_docker/test.sh
#!/bin/bash
. .env

echo "Running tests..."
for class in $TEST_CLASSES; do
    docker-compose exec -u www-data drupal bash -c "php web/core/scripts/run-tests.sh --verbose --class \"\Drupal\Tests\\$MODULE\Functional\\$class\""
done

File

tests/eva_docker/test.sh
View source
  1. #!/bin/bash
  2. . .env
  3. echo "Running tests..."
  4. for class in $TEST_CLASSES; do
  5. docker-compose exec -u www-data drupal bash -c "php web/core/scripts/run-tests.sh --verbose --class \"\Drupal\Tests\\$MODULE\Functional\\$class\""
  6. done