Revert "Remove rstcheck from build script"

This reverts commit b40ca17263.
This commit is contained in:
Sean Whalen
2018-10-12 14:09:50 -04:00
parent b40ca17263
commit 03f987840b
2 changed files with 7 additions and 2 deletions

View File

@@ -1,4 +1,4 @@
#!/usr/bin/env bash
. ~/venv/domainaware/bin/activate
pip install -U -r requirements.txt && cd docs && make html && cp -r _build/html/* ../../parsedmarc-docs/ && cd .. && flake8 parsedmarc && flake8 tests.py && rm -rf dist/ build/ && python3 setup.py sdist && python3 setup.py bdist_wheel
pip install -U -r requirements.txt && rstcheck --report warning README.rst && cd docs && make html && cp -r _build/html/* ../../parsedmarc-docs/ && cd .. && flake8 parsedmarc && flake8 tests.py && rm -rf dist/ build/ && python3 setup.py sdist && python3 setup.py bdist_wheel