AzimoLabs / fastlane-plugin-automated-test-emulator-run

Plugin dedicated for Android platform. Wraps gradle task/shell command used for launching instrumented tests. Provides start of as many AVDs with various configs as needed before test run, waits for boot, kills emulators and deletes them from hdd after tests are finished or disturbed.
MIT License
112 stars 48 forks source link

AVD_setup.json path must be an absolute url #18

Closed HugoGresse closed 6 years ago

HugoGresse commented 6 years ago

When trying to use the setup json from the same directory ./avd-setup.json the plugin cannot find the file. This make is difficult to use the plugin CI or when the file is commited to a VCS.

HugoGresse commented 6 years ago

Using something like AVD_setup_path: File.expand_path('../', __FILE__) + "/avd-conf.json", seems to work but the hardware_config_filepath & the snapshot_filepath must still be absolute and are required fields :/