From d0f2cc34244b8a06270fe8828faa1f305d5cc4ad Mon Sep 17 00:00:00 2001 From: Aidan Feldman Date: Wed, 23 Oct 2013 00:23:57 -0700 Subject: [PATCH] run html-proofing as part of travis build --- Rakefile | 2 +- script/cibuild | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Rakefile b/Rakefile index 9ee2964..8694104 100644 --- a/Rakefile +++ b/Rakefile @@ -1,7 +1,7 @@ require "html/proofer" task :test do - sh "bundle exec jekyll build" + sh "bundle exec jekyll build --trace" # ignore href="#" for the "Copy to clipboard" button HTML::Proofer.new("./_site", :href_ignore => ["#"]).run end diff --git a/script/cibuild b/script/cibuild index 1fb1d04..25bf7eb 100755 --- a/script/cibuild +++ b/script/cibuild @@ -6,4 +6,4 @@ echo "compiling javascript..." ./node_modules/.bin/coffee -c javascripts/app.coffee echo "building the site..." -bundle exec jekyll build --trace \ No newline at end of file +bundle exec rake test