Skip to content

Commit 8ecd011

Browse files
authored
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.
1 parent 11df287 commit 8ecd011

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
bundle install --jobs=4 --retry=3
3939
4040
- name: Run Tests
41-
run: bundle exec rspec
41+
run: INTEGRATION_TESTS=1 bundle exec rspec
4242

4343
- name: Rubocop
4444
run: bundle exec rubocop

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ rvm:
55
- 2.6.5
66

77
env:
8-
- RAILS_ENV=development RACK_ENV=development
8+
- RAILS_ENV=development RACK_ENV=development INTEGRATION_TESTS=1
99

1010
addons:
1111
apt_packages:

0 commit comments

Comments
 (0)