Skip to content

Commit ec0b3b6

Browse files
authored
Add integration tests to project (#747)
Adds integration tests to the project that's able to run in CI across different ruby versions. * Adds a Rails 5.2.4.1 app * Adds a Rails 6.0.2.1 app Fixes #733
1 parent d4c04ff commit ec0b3b6

File tree

172 files changed

+3188
-437
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

172 files changed

+3188
-437
lines changed

.github/workflows/ci.yml

+16-6
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ jobs:
1212
test:
1313
runs-on: ubuntu-latest
1414
strategy:
15+
fail-fast: false
1516
matrix:
1617
ruby: ['2.4.x', '2.5.x', '2.6.x']
1718

@@ -24,11 +25,20 @@ jobs:
2425
with:
2526
ruby-version: ${{ matrix.ruby }}
2627

27-
- name: Bundle
28+
- name: Install sqlite
2829
run: |
29-
gem update --system
30-
gem update bundler
31-
bundle install --jobs 4 --retry 3
30+
sudo apt-get install libsqlite3-dev
3231
33-
- name: Test
34-
run: bundle exec rubocop && bundle exec rspec
32+
- name: Update System
33+
run: |
34+
gem update --system --no-document
35+
36+
- name: Bundle install for Annotate models
37+
run: |
38+
bundle install --jobs=4 --retry=3
39+
40+
- name: Run Tests
41+
run: bundle exec rspec
42+
43+
- name: Rubocop
44+
run: bundle exec rubocop

.gitignore

-6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
!/spec/integration/*/log/.gitkeep
2-
!/spec/integration/*/tmp/.gitkeep
31
*.gem
42
.DS_Store
53
.bundle
@@ -16,8 +14,4 @@
1614
/doc/*
1715
/pkg/*
1816
/spec/debug.log
19-
/spec/integration/*/bin/
20-
/spec/integration/*/db/test.*
21-
/spec/integration/*/log/*
22-
/spec/integration/*/tmp/*
2317
.byebug_history

.rubocop.yml

+1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ AllCops:
66
- 'vendor/**/*'
77
- 'spec/fixtures/**/*'
88
- 'tmp/**/*'
9+
- 'spec/integration/**/*'
910

1011
Metrics/BlockLength:
1112
Exclude:

0 commit comments

Comments
 (0)