Skip to content

Commit

Permalink
Invoke tuist in the correct way
Browse files Browse the repository at this point in the history
  • Loading branch information
pietrocaselani committed May 18, 2019
1 parent fa5e2f1 commit 27cb828
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ default_platform(:ios)
platform :ios do
before_all do
setup_circle_ci
tuist generate
sh('tuist generate')
pods
end

Expand All @@ -17,11 +17,11 @@ platform :ios do
lane :tests do
sh('../scripts/generate_secrets empty', log: false)

run_tests_for_scheme(scheme: 'TVDBSwift')
run_tests_for_scheme(scheme: 'TMDBSwift')
run_tests_for_scheme(scheme: 'TraktSwift')
run_tests_for_scheme(scheme: 'CouchTrackerCore')
run_tests_for_scheme(scheme: 'CouchTracker')
run_tests_for_scheme(scheme: 'TVDBSwiftTests')
run_tests_for_scheme(scheme: 'TMDBSwiftTests')
run_tests_for_scheme(scheme: 'TraktSwiftTests')
run_tests_for_scheme(scheme: 'CouchTrackerCoreTests')
run_tests_for_scheme(scheme: 'CouchTrackerUITests')
end

desc 'Run tests and linters'
Expand Down

0 comments on commit 27cb828

Please sign in to comment.