Anna Sirota
41ce6f5780
Accidental backward-incompatible changes appear regularly in poetry, which leads to a regular chore of fixing this part of tooling, or having to stay on the old version of it for a very long time, which is bound to break.
10 lines
142 B
Bash
Executable File
10 lines
142 B
Bash
Executable File
#!/usr/bin/env sh
|
|
set -ux
|
|
|
|
env PYTHONPATH=. mypy .
|
|
black --check .
|
|
flake8 .
|
|
./manage.py test
|
|
yarn run eslint .
|
|
yarn run stylelint ./**/*.scss
|