Skip to content

Commit

Permalink
Stop producing junit outputs as nobody consumes them
Browse files Browse the repository at this point in the history
  • Loading branch information
davidcmoulton committed Jan 15, 2025
1 parent 2d24224 commit 311086e
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ static-analysis:

.PHONY: test
test: bring-up-app-and-queue-watcher
docker compose exec app vendor/bin/phpunit --log-junit build/phpunit.xml $(TEST)
docker compose exec app vendor/bin/phpunit $(TEST)

.PHONY: all-checks
all-checks: bring-up-app-without-queue-watcher
Expand Down
Empty file removed build/.gitkeep
Empty file.
3 changes: 1 addition & 2 deletions project_tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,10 @@ function cleanup {
}
trap cleanup EXIT

rm -f build/*.xml
vendor/bin/phpcs --standard=phpcs.xml.dist --warning-severity=0 -p src/ tests/ web/
vendor/bin/composer-dependency-analyser
vendor/bin/phpstan analyse
vendor/bin/phpunit --log-junit build/phpunit.xml
vendor/bin/phpunit

echo "Creating, deleting an index"
bin/ci-lifecycle
Expand Down

0 comments on commit 311086e

Please sign in to comment.