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