9 lines
No EOL
143 B
Bash
Executable file
9 lines
No EOL
143 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
export PATH=env/bin:${PATH}
|
|
|
|
flake8 project --ignore=E128,E501 --exclude="migrations,settings,*/wsgi.py"
|
|
|
|
npm test |