|
@@ -52,10 +52,6 @@ fi
|
|
|
|
|
|
|
|
|
if [[ $GROUP == docs ]]; then
|
|
|
-
|
|
|
- jlpm build:packages
|
|
|
- jlpm docs
|
|
|
-
|
|
|
|
|
|
pushd docs
|
|
|
pip install sphinx sphinx-copybutton sphinx_rtd_theme recommonmark jsx-lexer
|
|
@@ -65,19 +61,22 @@ if [[ $GROUP == docs ]]; then
|
|
|
rm build/html/genindex.html
|
|
|
rm build/html/search.html
|
|
|
|
|
|
-
|
|
|
+
|
|
|
changelog=./docs/source/getting_started/changelog.rst
|
|
|
- py.test --check-links -k .html --deselect=$changelog build/html || py.test --check-links -k .html --lf build/html
|
|
|
+ py.test --check-links -k .html --deselect $changelog build/html || py.test --check-links -k .html --deselect $changelog --lf build/html
|
|
|
|
|
|
popd
|
|
|
fi
|
|
|
|
|
|
|
|
|
-
|
|
|
if [[ $GROUP == docs2 ]]; then
|
|
|
-
|
|
|
+
|
|
|
py.test --check-links -k .md . || py.test --check-links -k .md --lf .
|
|
|
|
|
|
+
|
|
|
+ jlpm build:packages
|
|
|
+ jlpm docs
|
|
|
+
|
|
|
|
|
|
changelog=./docs/source/getting_started/changelog.rst
|
|
|
py.test --check-links $changlog || py.test --check-links --lf $changelog
|
|
@@ -93,7 +92,10 @@ if [[ $GROUP == integrity ]]; then
|
|
|
|
|
|
|
|
|
jlpm run lint:check || (echo 'Please run `jlpm run lint` locally and push changes' && exit 1)
|
|
|
+fi
|
|
|
+
|
|
|
|
|
|
+if [[ $GROUP == integrity2 ]]; then
|
|
|
|
|
|
jlpm run build:src
|
|
|
|