Skip to content
Snippets Groups Projects
Pipfile 675 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
pytest-clarity = "*"
prettytable = "*"
pytest_harvest = "*"
pytest-repeat = "*"
Dmitry Travyan's avatar
Dmitry Travyan committed
pexpect = "*"
pyyaml = "*"
tomli = {version = ">=1.1.0", markers = "python_version < '3.11'"}
requests = "*"
pg8000 = "*"
psycopg = {extras = ["binary"], version = "*"}
Sergey V's avatar
Sergey V committed

[requires]
python_version = "3.10"
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
"
"""