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