You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am trying to use the flank to run the iOS UITests on Firebase Lab. My test suite contains more than 100 tests out of which I need to run only few tests dynamically as per business logic. I am able to use -test-targets in yml file but I am trying to pass these values via CLI so that dynamic values can be passed. I tried multiple ways but firebase runs all the tests. Below are the few formats I have used but no luck,
java -jar flank.jar firebase test ios run --config ./fastlane/flank.ios.yml --test-targets MyClassA/testA --test-targets MyClassB
java -jar flank.jar firebase test ios run --config ./fastlane/flank.ios.yml --test-targets [MyClassA/testA,MyClassB]
java -jar flank.jar firebase test ios run --config ./fastlane/flank.ios.yml --test-targets: MyClassA/testA,MyClassB
Can you please let me know what is correct format to run only few tests via CLI? Thanks
The text was updated successfully, but these errors were encountered:
I am trying to use the flank to run the iOS UITests on Firebase Lab. My test suite contains more than 100 tests out of which I need to run only few tests dynamically as per business logic. I am able to use
-test-targets
in yml file but I am trying to pass these values via CLI so that dynamic values can be passed. I tried multiple ways but firebase runs all the tests. Below are the few formats I have used but no luck,java -jar flank.jar firebase test ios run --config ./fastlane/flank.ios.yml --test-targets MyClassA/testA --test-targets MyClassB
java -jar flank.jar firebase test ios run --config ./fastlane/flank.ios.yml --test-targets [MyClassA/testA,MyClassB]
java -jar flank.jar firebase test ios run --config ./fastlane/flank.ios.yml --test-targets: MyClassA/testA,MyClassB
Can you please let me know what is correct format to run only few tests via CLI? Thanks
The text was updated successfully, but these errors were encountered: