Files
parsedmarc/build.sh
Sean Whalen 26f43b3315 Fix build
2022-09-09 17:50:51 -04:00

5 lines
254 B
Bash
Executable File

#!/usr/bin/env bash
. venv/bin/activate
pip3 install -U -r requirements.txt && cd docs && make html && cp -r _build/html/* ../../parsedmarc-docs/ && cd .. && flake8 parsedmarc && flake8 tests.py && python3 tests.py && rm -rf dist/ build/ && hatch build