-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathtox.ini
33 lines (29 loc) · 933 Bytes
/
tox.ini
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# Tox (https://tox.wiki/) is a tool for running tests
# in multiple virtualenvs. This configuration file will run the
# test suite on all supported python versions. To use it, "pip install tox"
# and then run "tox" from this directory.
[tox]
envlist = {py38,py39,py310,py311}-{min,max}, lint
[testenv]
commands =
pytest {posargs} postgresql_audit tests
deps =
max: -r requirements/test-max.txt
min: -r requirements/test-min.txt
passenv =
POSTGRESQL_AUDIT_TEST_USER
POSTGRESQL_AUDIT_TEST_PASSWORD
POSTGRESQL_AUDIT_TEST_DB
setenv =
SQLALCHEMY_WARN_20=1
[testenv:docs]
deps = -r requirements/docs.txt
commands = sphinx-build -W -b html -d {envtmpdir}/doctrees docs {envtmpdir}/html
[testenv:lint]
recreate = True
commands =
flake8 postgresql_audit tests
isort --verbose --diff postgresql_audit
isort --verbose --check-only postgresql_audit
skip_install = True
deps = -r requirements/lint.txt