Unverified Commit 8ecd0116 by Andrew W. Lee Committed by GitHub

Add integration test env var to CI (#788)

Integration tests were made conditional in #786 and so they stopped running in CI. This PR adds the `INTEGRATION_TESTS` environment variable to CI so that integration tests start running again.
parent 11df2875
......@@ -38,7 +38,7 @@ jobs:
bundle install --jobs=4 --retry=3
- name: Run Tests
run: bundle exec rspec
run: INTEGRATION_TESTS=1 bundle exec rspec
- name: Rubocop
run: bundle exec rubocop
......@@ -5,7 +5,7 @@ rvm:
- 2.6.5
env:
- RAILS_ENV=development RACK_ENV=development
- RAILS_ENV=development RACK_ENV=development INTEGRATION_TESTS=1
addons:
apt_packages:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment