Skip to content

Commit 035c1c5

Browse files
committed
Fix the syntax for split line commands
1 parent da2283f commit 035c1c5

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

.circleci/config.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -52,10 +52,10 @@ jobs:
5252
- ios/wait-for-simulator
5353
- run:
5454
name: Run Unit Tests
55-
command: |
56-
bundle exec fastlane test_without_building \
57-
xctestrun:DerivedData/Build/Products/WooCommerce_UnitTests_iphonesimulator13.2-x86_64.xctestrun \
58-
destination:"platform=iOS Simulator,id=$SIMULATOR_UDID" try_count:3
55+
command: >
56+
bundle exec fastlane test_without_building
57+
xctestrun:DerivedData/Build/Products/WooCommerce_UnitTests_iphonesimulator13.2-x86_64.xctestrun
58+
destination:"platform=iOS Simulator,id=$SIMULATOR_UDID" try_count:3
5959
- ios/save-xcodebuild-artifacts:
6060
result-bundle-path: build/results
6161
UI Tests:
@@ -86,10 +86,10 @@ jobs:
8686
- ios/wait-for-simulator
8787
- run:
8888
name: Run UI Tests
89-
command: |
90-
bundle exec fastlane test_without_building \
91-
xctestrun:DerivedData/Build/Products/WooCommerce_UITests_iphonesimulator13.2-x86_64.xctestrun \
92-
destination:"platform=iOS Simulator,id=$SIMULATOR_UDID" try_count:3
89+
command: >
90+
bundle exec fastlane test_without_building
91+
xctestrun:DerivedData/Build/Products/WooCommerce_UITests_iphonesimulator13.2-x86_64.xctestrun
92+
destination:"platform=iOS Simulator,id=$SIMULATOR_UDID" try_count:3
9393
- ios/save-xcodebuild-artifacts:
9494
result-bundle-path: build/results
9595
- when:

0 commit comments

Comments
 (0)