Skip to content

Instantly share code, notes, and snippets.

@hgwr
Created August 23, 2019 00:15
Show Gist options
  • Select an option

  • Save hgwr/52986348fd337f3fbdcfc51375ac8cb7 to your computer and use it in GitHub Desktop.

Select an option

Save hgwr/52986348fd337f3fbdcfc51375ac8cb7 to your computer and use it in GitHub Desktop.
run rspec and show results and coverages
#!/bin/bash
export CIRCLE_ARTIFACTS=.
export COVERAGE=true
export CI=true
export DISABLE_SPRING=true
export ENABLE_COV=true
export RAILS_ENV=test
logifle=~/tmp/rspec_`date +'%Y%m%d-%H%M%S'`.log
bundle exec rspec 2>&1 | tee $logifle
open coverage/index.html
/usr/bin/less -R $logifle
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment