Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit c06ade7

Browse files
committedDec 16, 2024·
retry
1 parent d65f227 commit c06ade7

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed
 

Diff for: ‎Coder Desktop/Coder Desktop.xctestplan

+1
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525
}
2626
},
2727
{
28+
"enabled" : false,
2829
"parallelizable" : true,
2930
"target" : {
3031
"containerPath" : "container:Coder Desktop.xcodeproj",

Diff for: ‎Coder Desktop/Makefile

+7-3
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,18 @@ fmt:
1313
swiftformat $(FMTFLAGS) .
1414

1515
test:
16-
xcodebuild test-without-building \
16+
xcodebuild test \
1717
-project $(PROJECT) \
1818
-scheme $(SCHEME) \
1919
-testPlan $(SCHEME) \
20-
-skipPackagePluginValidation
20+
-skipPackagePluginValidation \
21+
CODE_SIGNING_REQUIRED=NO
2122

2223
lint:
23-
swiftlint --strict --quiet $(LINTFLAGS)
24+
swiftlint \
25+
--working-directory ../ \
26+
--strict \
27+
--quiet $(LINTFLAGS)
2428

2529
clean:
2630
xcodebuild clean \

0 commit comments

Comments
 (0)
Please sign in to comment.