Skip to content
Snippets Groups Projects
Pipfile 353 B
Newer Older
Sergey V's avatar
Sergey V committed
[[source]]
url = "https://pypi.org/simple"
verify_ssl = true
name = "pypi"

[packages]
pytest-xdist = "*"
pytest = "*"
flake8 = "*"
black = "*"
tarantool = "*"
funcy = "*"
mypy = "*"
Sergey V's avatar
Sergey V committed

[requires]
python_version = "3.10"

[scripts]
lint = """bash -c "
set -e -x
pipenv run flake8 ./test
pipenv run black ./test --check --diff
pipenv run mypy ./test
"
"""