10 lines
70 B
Bash
10 lines
70 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
set -e
|
||
|
|
||
|
bandit -r app
|
||
|
flake8 app
|
||
|
mypy app
|
||
|
nosetests tests
|
||
|
|