Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support for folders in ENV['files'] #101

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 16 additions & 2 deletions lib/motion/project/config.rb
Original file line number Diff line number Diff line change
Expand Up @@ -266,10 +266,24 @@ def spec_files
# Project specs.
specs = Dir.glob(File.join(specs_dir, '**', '*.rb')) - helpers
if files_filter = ENV['files']
# Filter specs we want to run. A filter can be either the basename of a spec file or its path.
# Filter specs we want to run. A filter can be either the basename of a spec file, its path, or a folder of spec files.
files_filter = files_filter.split(',')
files_filter.map! { |x| File.exist?(x) ? File.expand_path(x) : x }
specs.delete_if { |x| [File.expand_path(x), File.basename(x, '.rb'), File.basename(x, '_spec.rb')].none? { |p| files_filter.include?(p) } }
# Remove spec files that don't match
specs.delete_if do |x|
# spec files can match the entire path, or with or withour ".rb" or "_spec.rb"
[File.expand_path(x), File.basename(x, '.rb'), File.basename(x, '_spec.rb')].none? do |p|
files_filter.any? do |f|
if File.directory?(f)
# If the filter is a folder, check to see if the file is in that folder
p.index(f) == 0
else
# Otherwise the names should match
f == p
end
end
end
end
end
spec_core_files + helpers + specs
end
Expand Down