From 353bf8ffffe6c7d631b58788914e930bc32b0347 Mon Sep 17 00:00:00 2001 From: Nico Verbruggen Date: Mon, 16 Feb 2026 11:44:40 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=9D=20Add=20instructions=20for=20tests?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/tests.yml | 22 ---------------------- DEVELOPER.md | 16 ++++++++++++---- 2 files changed, 12 insertions(+), 26 deletions(-) delete mode 100644 .github/workflows/tests.yml diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml deleted file mode 100644 index dffeedc3..00000000 --- a/.github/workflows/tests.yml +++ /dev/null @@ -1,22 +0,0 @@ -name: Unit Tests - -on: - push: - branches: [main, dev/26.x] - pull_request: - branches: [dev/26.x] - -jobs: - unit-tests: - runs-on: macos-15 - steps: - - uses: actions/checkout@v4 - - - name: Run unit tests - run: | - xcodebuild test \ - -project "PHP Monitor.xcodeproj" \ - -scheme "Unit Tests" \ - -destination "platform=macOS" \ - -parallel-testing-enabled YES \ - -quiet diff --git a/DEVELOPER.md b/DEVELOPER.md index 0a7fefa6..2c60d952 100644 --- a/DEVELOPER.md +++ b/DEVELOPER.md @@ -60,10 +60,18 @@ In order to properly test everything, you will want to use the _PHP Monitor EAP_ If you would like to run the unit tests outside of Xcode, you can run: xcodebuild test \ - -project "PHP Monitor.xcodeproj" \ - -scheme "Unit Tests" \ - -destination "platform=macOS" \ - -parallel-testing-enabled NO + -project "PHP Monitor.xcodeproj" \ + -scheme "Unit Tests" \ + -destination "platform=macOS" \ + -parallel-testing-enabled NO + +### UI tests + + xcodebuild test \ + -project "PHP Monitor.xcodeproj" \ + -scheme "PHP Monitor" \ + -destination "platform=macOS" \ + -only-testing "UI Tests" ### Failures in UI tests