2015-10-19 13:04:49 +01:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
|
|
|
export PATH=env/bin:${PATH}
|
|
|
|
|
2015-11-23 18:50:36 +00:00
|
|
|
flake8 project --ignore=E128,E501,E401 --exclude="migrations,settings,*/wsgi.py"
|
|
|
|
echo "All Python tests passed!"
|
2015-11-23 14:33:03 +00:00
|
|
|
|
|
|
|
npm test
|