Skip to content

Commit 00ed1d5

Browse files
committed
Merge branch 'trunk' into fix/15152-cash-payment-presentation-logic-update
2 parents 732dbfb + 1b54847 commit 00ed1d5

File tree

4 files changed

+30
-10
lines changed

4 files changed

+30
-10
lines changed

.buildkite/pipeline.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,29 @@ steps:
4444
- github_commit_status:
4545
context: Unit Tests
4646

47+
- label: ":microscope: Standalone WordPressAuthenticator Unit Tests"
48+
command: |
49+
echo "--- :rubygems: Setting up Gems"
50+
install_gems
51+
52+
echo "--- :cocoapods: Setting up Pods"
53+
install_cocoapods
54+
55+
echo "--- :swift: Setting up Swift Packages"
56+
install_swiftpm_dependencies
57+
58+
echo "--- 🧪 Testing"
59+
bundle exec fastlane run scan \
60+
scheme:WordPressAuthenticator \
61+
prelaunch_simulator:true \
62+
device:'iPhone 16'
63+
plugins: [$CI_TOOLKIT]
64+
artifact_paths:
65+
- fastlane/test_output/*
66+
notify:
67+
- github_commit_status:
68+
context: WordPressAuthenticator Unit Tests
69+
4770
#################
4871
# Linters
4972
#################

WooCommerce/WooCommerce.xcodeproj/project.pbxproj

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -18656,9 +18656,8 @@
1865618656
ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES;
1865718657
CLANG_CXX_LANGUAGE_STANDARD = "gnu++20";
1865818658
CLANG_ENABLE_OBJC_WEAK = YES;
18659-
CODE_SIGN_STYLE = Manual;
18659+
CODE_SIGN_STYLE = Automatic;
1866018660
CURRENT_PROJECT_VERSION = 1;
18661-
DEVELOPMENT_TEAM = "";
1866218661
GCC_C_LANGUAGE_STANDARD = gnu17;
1866318662
GENERATE_INFOPLIST_FILE = YES;
1866418663
LOCALIZATION_PREFERS_STRING_CATALOGS = YES;
@@ -18667,7 +18666,6 @@
1866718666
MTL_FAST_MATH = YES;
1866818667
PRODUCT_BUNDLE_IDENTIFIER = com.automattic.WordPressAuthenticatorTests;
1866918668
PRODUCT_NAME = "$(TARGET_NAME)";
18670-
PROVISIONING_PROFILE_SPECIFIER = "";
1867118669
SWIFT_ACTIVE_COMPILATION_CONDITIONS = "DEBUG $(inherited)";
1867218670
SWIFT_EMIT_LOC_STRINGS = NO;
1867318671
SWIFT_VERSION = 5.0;
@@ -18682,17 +18680,15 @@
1868218680
ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES;
1868318681
CLANG_CXX_LANGUAGE_STANDARD = "gnu++20";
1868418682
CLANG_ENABLE_OBJC_WEAK = YES;
18685-
CODE_SIGN_STYLE = Manual;
18683+
CODE_SIGN_STYLE = Automatic;
1868618684
CURRENT_PROJECT_VERSION = 1;
18687-
DEVELOPMENT_TEAM = "";
1868818685
GCC_C_LANGUAGE_STANDARD = gnu17;
1868918686
GENERATE_INFOPLIST_FILE = YES;
1869018687
LOCALIZATION_PREFERS_STRING_CATALOGS = YES;
1869118688
MARKETING_VERSION = 1.0;
1869218689
MTL_FAST_MATH = YES;
1869318690
PRODUCT_BUNDLE_IDENTIFIER = com.automattic.WordPressAuthenticatorTests;
1869418691
PRODUCT_NAME = "$(TARGET_NAME)";
18695-
PROVISIONING_PROFILE_SPECIFIER = "";
1869618692
SWIFT_EMIT_LOC_STRINGS = NO;
1869718693
SWIFT_VERSION = 5.0;
1869818694
TARGETED_DEVICE_FAMILY = "1,2";
@@ -18706,17 +18702,15 @@
1870618702
ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES;
1870718703
CLANG_CXX_LANGUAGE_STANDARD = "gnu++20";
1870818704
CLANG_ENABLE_OBJC_WEAK = YES;
18709-
CODE_SIGN_STYLE = Manual;
18705+
CODE_SIGN_STYLE = Automatic;
1871018706
CURRENT_PROJECT_VERSION = 1;
18711-
DEVELOPMENT_TEAM = "";
1871218707
GCC_C_LANGUAGE_STANDARD = gnu17;
1871318708
GENERATE_INFOPLIST_FILE = YES;
1871418709
LOCALIZATION_PREFERS_STRING_CATALOGS = YES;
1871518710
MARKETING_VERSION = 1.0;
1871618711
MTL_FAST_MATH = YES;
1871718712
PRODUCT_BUNDLE_IDENTIFIER = com.automattic.WordPressAuthenticatorTests;
1871818713
PRODUCT_NAME = "$(TARGET_NAME)";
18719-
PROVISIONING_PROFILE_SPECIFIER = "";
1872018714
SWIFT_EMIT_LOC_STRINGS = NO;
1872118715
SWIFT_VERSION = 5.0;
1872218716
TARGETED_DEVICE_FAMILY = "1,2";

WooCommerce/WooCommerceTests/UnitTests.xctestplan

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,12 @@
2525
"containerPath" : "container:WooCommerce.xcodeproj",
2626
"identifier" : "B56DB3C52049BFAA00D4AA8E",
2727
"name" : "WooCommerce"
28-
}
28+
},
29+
"testRepetitionMode" : "retryOnFailure"
2930
},
3031
"testTargets" : [
3132
{
33+
"enabled" : false,
3234
"target" : {
3335
"containerPath" : "container:WooCommerce.xcodeproj",
3436
"identifier" : "3F0904072D26A40800D8ACCE",

WooCommerce/WordPressAuthenticatorTests/UnitTests.xctestplan

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
"identifier" : "B5ED78F3207E976500A8FD8C",
1818
"name" : "WordPressAuthenticator"
1919
},
20+
"testRepetitionMode" : "retryOnFailure",
2021
"testTimeoutsEnabled" : true
2122
},
2223
"testTargets" : [

0 commit comments

Comments
 (0)