File tree 4 files changed +20
-11
lines changed
Tests/SwiftUIKitTests/Bundle
4 files changed +20
-11
lines changed Original file line number Diff line number Diff line change @@ -20,11 +20,11 @@ final class Bundle_InformationTests: XCTestCase {
20
20
}
21
21
}
22
22
23
- private class MyBundle : Bundle {
23
+ private class MyBundle : Bundle , @ unchecked Sendable {
24
24
25
25
override var infoDictionary : [ String : Any ] ? {
26
26
[
27
- String ( kCFBundleVersionKey) : " 123 " ,
27
+ String ( kCFBundleVersionKey) : " 1234 " ,
28
28
" CFBundleDisplayName " : " SwiftUIKit Tests " ,
29
29
" CFBundleShortVersionString " : " 1.2.3 "
30
30
]
Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ test_platform() {
40
40
41
41
# Define a local $PLATFORM variable
42
42
local PLATFORM=" ${1// _/ } "
43
-
43
+
44
44
# Define the destination, based on the $PLATFORM
45
45
case $PLATFORM in
46
46
" iOS" )
@@ -66,10 +66,16 @@ test_platform() {
66
66
67
67
# Test $TARGET for the $DESTINATION
68
68
echo " Testing $TARGET for $PLATFORM ..."
69
- xcodebuild test -scheme $TARGET -derivedDataPath .build -destination " $DESTINATION " -enableCodeCoverage YES;
69
+ xcodebuild test -scheme $TARGET -derivedDataPath .build -destination " $DESTINATION " -enableCodeCoverage YES
70
+ local TEST_RESULT=$?
71
+
72
+ if [[ $TEST_RESULT -ne 0 ]]; then
73
+ return $TEST_RESULT
74
+ fi
70
75
71
76
# Complete successfully
72
77
echo " Successfully tested $TARGET for $PLATFORM "
78
+ return 0
73
79
}
74
80
75
81
# Loop through all platforms and call the test function
82
88
# Complete successfully
83
89
echo " "
84
90
echo " Testing $TARGET completed successfully!"
85
- echo " "
91
+ echo " "
Original file line number Diff line number Diff line change 26
26
# Create local argument variables.
27
27
BRANCH=$1
28
28
29
+ # Start script
30
+ echo " "
31
+ echo " Validating git repository..."
32
+ echo " "
33
+
29
34
# Check if the current directory is a Git repository
30
35
if ! git rev-parse --is-inside-work-tree > /dev/null 2>&1 ; then
31
36
echo " Error: Not a Git repository"
@@ -38,11 +43,6 @@ if [ -n "$(git status --porcelain)" ]; then
38
43
exit 1
39
44
fi
40
45
41
- # Start script
42
- echo " "
43
- echo " Validating git repository..."
44
- echo " "
45
-
46
46
# Verify that we're on the correct branch
47
47
current_branch=$( git rev-parse --abbrev-ref HEAD)
48
48
if [ " $current_branch " != " $BRANCH " ]; then
Original file line number Diff line number Diff line change @@ -63,7 +63,10 @@ echo ""
63
63
64
64
# Run SwiftLint
65
65
echo " Running SwiftLint"
66
- swiftlint
66
+ if ! swiftlint --strict; then
67
+ echo " Error: SwiftLint failed"
68
+ exit 1
69
+ fi
67
70
68
71
# Run unit tests
69
72
echo " Testing..."
You can’t perform that action at this time.
0 commit comments