You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -48,15 +48,15 @@ Alternatively, you can use a prebuilt binary release of the tool distributed und
48
48
49
49
### Using Swift Package Manager
50
50
51
-
Add `.package(url: "git@github.com:mikeger/XcodeSelectiveTesting", .upToNextMajor(from: "0.12.7"))` to your `Package.swift`'s `dependencies` section.
51
+
Add `.package(url: "git@github.com:mikeger/XcodeSelectiveTesting", .upToNextMajor(from: "0.13.1"))` to your `Package.swift`'s `dependencies` section.
52
52
53
53
Use SPM to run the command: `swift run xcode-selective-test`.
54
54
55
55
Alternatively, you can use a prebuilt binary release of the tool distributed under [releases](https://github.com/mikeger/XcodeSelectiveTesting/releases) section.
56
56
57
57
### Using [Mint](https://github.com/yonaskolb/Mint)
@@ -83,12 +83,12 @@ NB: This command assumes you have [jq](https://jqlang.github.io/jq/) tool instal
83
83
84
84
Alternatively, you can use CLI to achieve the same result:
85
85
86
-
1. Run `mint run mikeger/XcodeSelectiveTesting@0.12.7 YourWorkspace.xcworkspace --test-plan YourTestPlan.xctestplan`
86
+
1. Run `mint run mikeger/XcodeSelectiveTesting@0.13.1 YourWorkspace.xcworkspace --test-plan YourTestPlan.xctestplan`
87
87
2. Run tests normally, XcodeSelectiveTesting would modify your test plan according to the local changes
88
88
89
89
To process multiple test plans, specify the `--test-plan` option multiple times:
90
90
```bash
91
-
mint run mikeger/XcodeSelectiveTesting@0.12.7 YourWorkspace.xcworkspace \
91
+
mint run mikeger/XcodeSelectiveTesting@0.13.1 YourWorkspace.xcworkspace \
92
92
--test-plan TestPlan1.xctestplan \
93
93
--test-plan TestPlan2.xctestplan
94
94
```
@@ -103,12 +103,12 @@ mint run mikeger/XcodeSelectiveTesting@0.12.7 YourWorkspace.xcworkspace \
103
103
### Use case: Xcode-based project, execute tests on the CI, with test plan
104
104
105
105
1. Add code to install the tool
106
-
2. Add a CI step before you execute your tests: `mint run mikeger/XcodeSelectiveTesting@0.12.7 YourWorkspace.xcworkspace --test-plan YourTestPlan.xctestplan --base-branch $PR_BASE_BRANCH`
106
+
2. Add a CI step before you execute your tests: `mint run mikeger/XcodeSelectiveTesting@0.13.1 YourWorkspace.xcworkspace --test-plan YourTestPlan.xctestplan --base-branch $PR_BASE_BRANCH`
107
107
3. Execute your tests
108
108
109
109
To process multiple test plans on CI:
110
110
```bash
111
-
mint run mikeger/XcodeSelectiveTesting@0.12.7 YourWorkspace.xcworkspace \
111
+
mint run mikeger/XcodeSelectiveTesting@0.13.1 YourWorkspace.xcworkspace \
0 commit comments