The Fastfile
included at the top of the fastlane project allows you to run several validation steps, such as automated tests, code style and more.
bundle exec fastlane test
You can also run those steps independently or on a more fine grained way.
Make sure to run the automated tests using bundle exec
to ensure you’re running the correct version of rspec
and rubocop
First, navigate into the root of the fastlane project and run all unit tests using
bundle exec rspec
If you want to run tests only for one tool, use
bundle exec rspec [tool_name]
If you know exactly which _spec.rb
file you want to run, use
bundle exec rspec ./fastlane/spec/fastlane_require_spec.rb
Replace ./fastlane/spec/fastlane_require_spec.rb
with the path of your test file of course.
If you know the specific unit test or unit test group you want to run, use
bundle exec rspec ./fastlane/spec/fastlane_require_spec.rb:17
The number is the line number of the unit test (it ... do
) or unit test group (describe ... do
) you want to run.
Instead of using the line number you can also use a filter with the it "something", now: true
notation and then use bundle exec rspec -t now
to run this tagged test. (Note that now
can be any random string of your choice.)
To verify and auto-fix the code style
bundle exec rubocop -a
If you want to run code style verification only for one tool, use bundle exec rubocop -a [tool_name]
After introducing some changes to the fastlane source code, you probably want to test the changes for your application. The easiest way to do so it use bundler.
Copy the Gemfile .assets/Gemfile from your local fastlane clone and drop it into your project's root folder.
Make sure to replace <PATH_TO_YOUR_LOCAL_FASTLANE_CLONE>
with the path to your fastlane clone, e.g. ~/fastlane
, then you can run
bundle update
in your project’s root directory. After doing so, you can verify you’re using the local version by running
bundle show fastlane
which should print out the path to your local development environment.
From now on, every time you introduce a change to your local fastlane code base, you can immediately test it by running bundle exec fastlane …
. (Note that just using fastlane …
without bundle exec
will not use your local fastlane code base!)
If you want to run a command with your normal fastlane installation, simply do not run the command with the bundle exec
prefix.
To fully remove your local fastlane from your local project again, delete the Gemfile
you created above.