1
This repository has been archived on 2023-03-26. You can view files and clone it, but cannot push or open issues or pull requests.
website-2020-spike/scripts/test.sh

22 lines
258 B
Bash
Executable File

#!/usr/bin/env bash
export PATH=env/bin:node_modules/.bin:${PATH}
set -ex
coverage run --source=website manage.py test $@
coverage report
coverage html
black website/ --check
flake8 website/
isort -rc -c website/
mypy website/
eslint static/src/js