diff options
author | Zhiming Wang <zmwangx@gmail.com> | 2016-12-24 14:15:23 -0500 |
---|---|---|
committer | Zhiming Wang <zmwangx@gmail.com> | 2016-12-24 14:15:23 -0500 |
commit | 1635b0978b22af4ea9682fd283a5bf139a616425 (patch) | |
tree | c342e4ad9b70abe7abfce288a0e1c5925b503833 /.travis.yml | |
parent | 45e5e5a5372ccbfb5ff015cbe9722030dd445c39 (diff) | |
download | my_new_personal_website-1635b0978b22af4ea9682fd283a5bf139a616425.tar.xz my_new_personal_website-1635b0978b22af4ea9682fd283a5bf139a616425.zip |
.travis.yml: update tidy test
- Exclude google webmaster verification file;
- Show filename:line:column in errors and warnings.
Diffstat (limited to '')
-rw-r--r-- | .travis.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index 022258b0..5980c02a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -26,4 +26,4 @@ install: - pip install -r requirements.txt script: - python pyblog generate - - find build -name '*.html' -print0 | while IFS= read -r -d '' file; do tidy -q -e "$file"; done + - find build -path 'build/google*.html' -o -name '*.html' -print0 | xargs -0 tidy -q -e --gnu-emacs yes |