wip
This commit is contained in:
parent
3909b3a361
commit
7e95a56fed
|
@ -83,6 +83,15 @@ lane :test do |options|
|
|||
raise "Unsupported scheme: #{scheme}"
|
||||
end
|
||||
else
|
||||
is_legacy_sdk = (platform == "ios" && version == 13) || (platform == "tvos" && version == 13)
|
||||
scheme = case scheme
|
||||
when "Introspect"
|
||||
"Introspect"
|
||||
when "SwiftUIIntrospectTests"
|
||||
is_legacy_sdk ? "LegacySwiftUIIntrospectTests" : "SwiftUIIntrospectTests"
|
||||
else
|
||||
raise "Unsupported scheme: #{scheme}"
|
||||
end
|
||||
run_tests(
|
||||
configuration: configuration,
|
||||
scheme: scheme,
|
||||
|
|
Loading…
Reference in New Issue