summaryrefslogtreecommitdiff
path: root/Rakefile
diff options
context:
space:
mode:
authorRobert Gleeson <rob@flowof.info>2014-02-03 12:35:23 +0100
committerRobert Gleeson <rob@flowof.info>2014-02-03 12:35:42 +0100
commitfdc8715e09d3f909574d8f387c43a9ccae7e66f1 (patch)
tree68a3b17a6a986c200940f81099275936c567aefe /Rakefile
parent87f8ac439e53c762441ef5743d9eeb4e1e6b48aa (diff)
downloadpry-fdc8715e09d3f909574d8f387c43a9ccae7e66f1.tar.gz
add spec/integration/readline_spec.rb
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Rakefile b/Rakefile
index 70e84c45..f4439ad0 100644
--- a/Rakefile
+++ b/Rakefile
@@ -42,7 +42,7 @@ task :test do
if explicit_list = ENV['run']
explicit_list.split(',')
else
- Dir['spec/**/*_spec.rb'].shuffle!
+ (Dir['spec/**/*_spec.rb'] - Dir["spec/integration/**/*_spec.rb"]).shuffle!
end
run_specs paths
end