Browse Source

Disable html checks for now

Steven Silvester 5 years ago
parent
commit
140ea1fc81
1 changed files with 2 additions and 1 deletions
  1. 2 1
      scripts/ci_script.sh

+ 2 - 1
scripts/ci_script.sh

@@ -60,7 +60,8 @@ if [[ $GROUP == docs ]]; then
     # Remove internal sphinx files and use pytest-check-links on the generated html
     rm build/html/genindex.html
     rm build/html/search.html
-    py.test --check-links -k .html build/html || py.test --check-links -k .html --lf build/html
+    # FIXME: re-enable pending https://github.com/minrk/pytest-check-links/pull/7
+    #py.test --check-links -k .html build/html || py.test --check-links -k .html --lf build/html
 
     popd
 fi