mirror of
https://github.com/domainaware/parsedmarc.git
synced 2026-02-17 07:03:58 +00:00
5 lines
254 B
Bash
Executable File
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
|