We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
scrivito
1 parent fdc2474 commit c753b18Copy full SHA for c753b18
.travis.yml
@@ -18,7 +18,9 @@ cache:
18
- bundler
19
script:
20
- bundle exec rake db:migrate --trace
21
- - bundle exec rake
+ - 'if [ "$TRAVIS_PULL_REQUEST" = "false" ]; then SCRIVITO_TEST=true bundle exec rspec spec; fi'
22
+ - 'if [ "$TRAVIS_PULL_REQUEST" != "false" ] && [ "$TRAVIS_PULL_REQUEST_SLUG" = "coderdojo-japan/coderdojo.jp" ]; then SCRIVITO_TEST=true bundle exec rspec spec; fi'
23
+ - 'if [ "$TRAVIS_PULL_REQUEST" != "false" ] && [ "$TRAVIS_PULL_REQUEST_SLUG" != "coderdojo-japan/coderdojo.jp" ]; then bundle exec rspec spec --tag ~@scrivito; fi'
24
env:
25
global:
26
- TZ='Asia/Tokyo'
0 commit comments