aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.travis.yml2
-rw-r--r--web/Rakefile4
2 files changed, 3 insertions, 3 deletions
diff --git a/.travis.yml b/.travis.yml
index 5cd3e00..55d9778 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -19,4 +19,4 @@ install:
- bundle install
script:
- bundle exec rake db:migrate
- - bundle exec rake
+ - bundle exec rake test
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