From a9132528ee70d994bd5fdc036e15055fd4a6b3d7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=B6ller?= Date: Mon, 3 Jan 2022 18:27:33 +0100 Subject: [PATCH] Fix: Remove empty integration test suite --- .github/workflows/integrate.yaml | 3 --- Makefile | 3 +-- test/Integration/phpunit.xml | 30 ------------------------------ 3 files changed, 1 insertion(+), 35 deletions(-) delete mode 100644 test/Integration/phpunit.xml diff --git a/.github/workflows/integrate.yaml b/.github/workflows/integrate.yaml index d6b81a5d..223092a8 100644 --- a/.github/workflows/integrate.yaml +++ b/.github/workflows/integrate.yaml @@ -226,9 +226,6 @@ jobs: - name: "Run unit tests with phpunit/phpunit" run: "vendor/bin/phpunit --configuration=test/Unit/phpunit.xml" - - name: "Run integration tests with phpunit/phpunit" - run: "vendor/bin/phpunit --configuration=test/Integration/phpunit.xml" - code-coverage: name: "Code Coverage" diff --git a/Makefile b/Makefile index 80f8d191..79760e9c 100644 --- a/Makefile +++ b/Makefile @@ -48,10 +48,9 @@ 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 unit and integration tests with phpunit/phpunit +tests: vendor ## Runs unit tests with phpunit/phpunit mkdir -p .build/phpunit vendor/bin/phpunit --configuration=test/Unit/phpunit.xml - vendor/bin/phpunit --configuration=test/Integration/phpunit.xml vendor: composer.json composer.lock composer validate --strict diff --git a/test/Integration/phpunit.xml b/test/Integration/phpunit.xml deleted file mode 100644 index 2de11864..00000000 --- a/test/Integration/phpunit.xml +++ /dev/null @@ -1,30 +0,0 @@ - - - - . - - -