Newer
Older
[[source]]
url = "https://pypi.org/simple"
verify_ssl = true
name = "pypi"
[packages]
pytest-xdist = "*"
pytest = "*"
flake8 = "*"
black = "*"
tarantool = "*"
funcy = "*"
tomli = {version = ">=1.1.0", markers = "python_version < '3.11'"}
pg8000 = "*"
psycopg = {extras = ["binary"], version = "*"}
fmt = """bash -c "
set -e -x
pipenv run black ./test
"
"""
lint = """bash -c "
set -e -x
pipenv run flake8 ./test
pipenv run black ./test --check --diff
pipenv run mypy ./test
"
"""