mirror of
https://github.com/ditkrg/active_model_serializers.git
synced 2026-01-22 22:06:50 +00:00
It is impossible to run our tests on both Rails 3.2 and Rails 4: 1. Rails 3.2 relies on test/unit, which is MiniTest 4. 2. Rails 4 relies on MiniTest 5. 3. MiniTest 5 is not compatible with test/unit. 😢 😢 😢
18 lines
253 B
YAML
18 lines
253 B
YAML
language: ruby
|
|
rvm:
|
|
- 1.9.3
|
|
- 2.0.0
|
|
- 2.1.1
|
|
- jruby-19mode
|
|
- rbx-2
|
|
- ruby-head
|
|
env:
|
|
- "RAILS_VERSION=4.0"
|
|
- "RAILS_VERSION=4.1"
|
|
- "RAILS_VERSION=master"
|
|
matrix:
|
|
allow_failures:
|
|
- rvm: ruby-head
|
|
- env: "RAILS_VERSION=master"
|
|
|