Skip to content

Commit

Permalink
Experiment: Use scan instead of multi_scan
Browse files Browse the repository at this point in the history
  • Loading branch information
mokagio committed Nov 3, 2021
1 parent 518508f commit 84aaca6
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -847,7 +847,7 @@ platform :ios do
all_tests = tests_from_xctestrun(xctestrun: test_plan_path)
only_testing = all_tests["WordPressTest"].reject { |t| t.include?("ContextManagerMock") || t.include?("TestContextManager") || t.include?("OCMLocation") || t.include?("HTTPStubsDescriptor") }

multi_scan(
scan(
workspace: WORKSPACE_PATH,
scheme: 'WordPress',
device: options[:device],
Expand All @@ -856,7 +856,6 @@ platform :ios do
test_without_building: true,
only_testing: only_testing,
xctestrun: test_plan_path,
try_count: options[:try_count],
output_directory: File.join(PROJECT_ROOT_FOLDER, 'build', 'results'),
result_bundle: true
)
Expand Down

0 comments on commit 84aaca6

Please sign in to comment.