mirror of
https://github.com/aljazceru/CTFd.git
synced 2026-01-31 20:04:28 +01:00
13 lines
193 B
Makefile
13 lines
193 B
Makefile
lint:
|
|
flake8 --ignore=E402,E501,E712 CTFd/ tests/
|
|
|
|
test:
|
|
pytest --cov=CTFd --disable-warnings -n auto
|
|
bandit -r CTFd -x CTFd/uploads
|
|
|
|
serve:
|
|
python serve.py
|
|
|
|
shell:
|
|
python manage.py shell
|