diff --git a/README.md b/README.md index 580b8af..4bef6c0 100644 --- a/README.md +++ b/README.md @@ -184,13 +184,7 @@ If you add a project, you can test it with mypy_primer -k new_project --debug ``` -If you want to install the dependencies to run `test.sh`, simply: -``` -pip install isort black flake8 mypy -``` - Some other things that could be done are: -- add support for mypy plugins - add bisection for typeshed - make it possibe to dump structured output - multiple mypy invocations for the same project diff --git a/test.sh b/test.sh index 3d385dd..eb5023f 100755 --- a/test.sh +++ b/test.sh @@ -1,5 +1,6 @@ set -ex +uv pip install isort black flake8 mypy isort --diff --check --quiet . black --diff --check --quiet . flake8 --max-line-length=100 --ignore=E203,E501,W503 $(git ls-files | grep "py$")