Skip to content

Commit

Permalink
Only run tests once in fastlane (#415)
Browse files Browse the repository at this point in the history
Something about our fastlane configuration was resulting in some tests
being run twice, slowing test runs. Update to only run all tests once.

Testing:
Verify this PR runs tests
  • Loading branch information
theospears authored Oct 7, 2023
1 parent d95583e commit dbeb9ed
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 @@ -17,8 +17,7 @@ default_platform(:ios)

platform :ios do
lane :test do
run_tests(scheme: "BeeSwiftTests")
run_tests(scheme: "BeeSwiftUITests")
run_tests(scheme: "BeeSwift")
end
lane :build do
build_app(scheme: "BeeSwift")
Expand Down

0 comments on commit dbeb9ed

Please sign in to comment.