From d0ec09f03a6c30b809d767489ba2abb614dc8006 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=B6ller?= Date: Wed, 5 Jan 2022 10:14:47 +0100 Subject: [PATCH] Fix: Remove auto-review tests --- .github/workflows/integrate.yaml | 3 --- Makefile | 3 +-- test/AutoReview/SrcCodeTest.php | 40 -------------------------------- test/phpunit.xml | 3 --- 4 files changed, 1 insertion(+), 48 deletions(-) delete mode 100644 test/AutoReview/SrcCodeTest.php diff --git a/.github/workflows/integrate.yaml b/.github/workflows/integrate.yaml index c2c811b4..e3c6aee5 100644 --- a/.github/workflows/integrate.yaml +++ b/.github/workflows/integrate.yaml @@ -317,9 +317,6 @@ jobs: - name: "Validate Doctrine mapping" run: "vendor/bin/doctrine orm:validate-schema --skip-sync" - - name: "Run auto-review tests with phpunit/phpunit" - run: "vendor/bin/phpunit --configuration=test/phpunit.xml --testsuite=auto-review" - - name: "Run unit tests with phpunit/phpunit" run: "vendor/bin/phpunit --configuration=test/phpunit.xml --testsuite=unit" diff --git a/Makefile b/Makefile index 25be5ea6..7eeb7d25 100644 --- a/Makefile +++ b/Makefile @@ -47,9 +47,8 @@ static-code-analysis-baseline: vendor ## Generates a baseline for static code an vendor/bin/psalm --config=psalm.xml --set-baseline=psalm-baseline.xml .PHONY: tests -tests: vendor ## Runs auto-review, unit, and integration tests with phpunit/phpunit +tests: vendor ## Runs unit and integration tests with phpunit/phpunit mkdir -p .build/phpunit - vendor/bin/phpunit --configuration=test/phpunit.xml --testsuite=auto-review vendor/bin/phpunit --configuration=test/phpunit.xml --testsuite=unit vendor/bin/phpunit --configuration=test/phpunit.xml --testsuite=integration diff --git a/test/AutoReview/SrcCodeTest.php b/test/AutoReview/SrcCodeTest.php deleted file mode 100644 index e2062608..00000000 --- a/test/AutoReview/SrcCodeTest.php +++ /dev/null @@ -1,40 +0,0 @@ - - - AutoReview/ - Integration/