Skip to content

Commit

Permalink
🔧 fix(ci): disable ui tests on CI
Browse files Browse the repository at this point in the history
  • Loading branch information
WezSieTato committed May 8, 2024
1 parent 14cd149 commit c8f8146
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions BuyPolish/fastlane/Fastfile_tests.rb
Original file line number Diff line number Diff line change
@@ -1,14 +1,13 @@
require_relative 'shared_constants'

swiftformat_executable = "Pods/SwiftFormat/CommandLineTool/swiftformat"
testplan_full = "Full"

platform :ios do
lane :tests do
lint
check_project_structure
check_formatting
scan(testplan: testplan_full)
scan(testplan: "Unit")
end

lane :record_snapshots do
Expand All @@ -20,7 +19,7 @@

snapshots_paths.each {|path| clear_derived_data(derived_data_path:path)}
scan(
testplan: testplan_full,
testplan: "Full",
fail_build: false
)
commit_and_push_if_ci(
Expand Down

0 comments on commit c8f8146

Please sign in to comment.