7 lines
No EOL
124 B
Bash
Executable file
7 lines
No EOL
124 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
# Check formatting and linting
|
|
flake8 --max-line-length 120 $(git ls-files '*.py')
|
|
|
|
# Run pytest
|
|
pytest |