summaryrefslogtreecommitdiff
path: root/tasks
diff options
context:
space:
mode:
authorBeat Christen <beat.christen@gmail.com>2019-05-27 12:00:08 +0200
committerDan Allen <dan.j.allen@gmail.com>2019-05-27 04:00:08 -0600
commit66c1482083c93866aa383643c099e57aac1b172c (patch)
tree0d967d02b7b85ef21a503e2606671c7b5f958cb2 /tasks
parent14d9009d42e0eef7bd42bbadbda34895688c6a89 (diff)
add visual regression tests (PR #1024)
Diffstat (limited to 'tasks')
-rw-r--r--tasks/rspec.rake1
1 files changed, 1 insertions, 0 deletions
diff --git a/tasks/rspec.rake b/tasks/rspec.rake
index 51dfb0bb..509c5e64 100644
--- a/tasks/rspec.rake
+++ b/tasks/rspec.rake
@@ -3,6 +3,7 @@ begin
RSpec::Core::RakeTask.new :spec do |t|
t.verbose = true
opts = %w(-f progress)
+ opts.append '-t', '~integration' if ENV['UNIT']
opts.unshift '-w' if !ENV['CI'] || ENV['COVERAGE']
t.rspec_opts = opts
end