diff options
author | Peter Wilmott <p@p8952.info> | 2015-08-16 16:42:16 +0100 |
---|---|---|
committer | Peter Wilmott <p@p8952.info> | 2015-08-16 16:42:16 +0100 |
commit | a62cf2a441c016391560e27f3d63ca8dd777f6f9 (patch) | |
tree | 1c3a627edf2dcf73c2f8430caac8efc1c03dfef4 /web | |
parent | Drop shellcheck until I can work out how to get it on Travis (diff) | |
download | ruby-tinderbox-a62cf2a441c016391560e27f3d63ca8dd777f6f9.tar.gz ruby-tinderbox-a62cf2a441c016391560e27f3d63ca8dd777f6f9.tar.bz2 ruby-tinderbox-a62cf2a441c016391560e27f3d63ca8dd777f6f9.zip |
Only run tests not linters
Diffstat (limited to 'web')
-rw-r--r-- | web/Rakefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/web/Rakefile b/web/Rakefile index fa80bd1..3c9225a 100644 --- a/web/Rakefile +++ b/web/Rakefile @@ -12,8 +12,8 @@ desc 'Run linters' task :lint do puts "RUBOCOP:\n" sh 'bundle exec rubocop' - # puts "\nSHELLCHECK:\n" - # sh "shellcheck --exclude=SC2016 #{Dir.glob('../**/*.sh').join(' ')}" + puts "\nSHELLCHECK:\n" + sh "shellcheck --exclude=SC2016 #{Dir.glob('../**/*.sh').join(' ')}" puts "\nPYLINT:\n" sh "pylint --rcfile=.pylintrc #{Dir.glob('../**/*.py').join(' ')}" end |