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: ...@@ -38,7 +38,7 @@ jobs:
bundle install --jobs=4 --retry=3 bundle install --jobs=4 --retry=3
- name: Run Tests - name: Run Tests
run: bundle exec rspec run: INTEGRATION_TESTS=1 bundle exec rspec
- name: Rubocop - name: Rubocop
run: bundle exec rubocop run: bundle exec rubocop
...@@ -5,7 +5,7 @@ rvm: ...@@ -5,7 +5,7 @@ rvm:
- 2.6.5 - 2.6.5
env: env:
- RAILS_ENV=development RACK_ENV=development - RAILS_ENV=development RACK_ENV=development INTEGRATION_TESTS=1
addons: addons:
apt_packages: 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