Advertisement
Guest User

Untitled

a guest
Aug 20th, 2019
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.71 KB | None | 0 0
  1. - run:
  2. name: run feature tests
  3. command: |
  4. TEST_FILES="$(circleci tests glob "spec/features/*_spec.rb" | circleci tests split --split-by=timings)"
  5. echo Tests run on Google Chrome version: `google-chrome --version`
  6. bundle exec rspec --format documentation \
  7. --format RspecJunitFormatter \
  8. --out /tmp/test-results/feature_rspec.xml \
  9. $TEST_FILES || bundle exec rspec --format documentation \
  10. --format RspecJunitFormatter \
  11. --out /tmp/test-results/feature_rspec.xml \
  12. "spec/features" --only-failures
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement