-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtox.ini
37 lines (32 loc) · 862 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
34
35
36
37
# This file can be used to customize tox tests as well as other test frameworks like flake8 and mypy
[tox]
envlist =
3.{9,10,11,12,13}
format
lint
isolated_build = true
min_version = 4
[testenv]
allowlist_externals = poetry
[testenv:pytest]
# Run the python tests.
# To execute, run `tox -e pytest`
envlist = 3.{9,10,11,12,13}
commands =
poetry install -v
poetry run pytest
[testenv:format]
# Attempt to auto-resolve lint errors before they are raised.
# To execute, run `tox -e format`
commands =
poetry install -v
poetry run ruff check tap_db2/
poetry run ruff format tap_db2/
[testenv:lint]
# Raise an error if lint and style standards are not met.
# To execute, run `tox -e lint`
commands =
poetry install -v
poetry run ruff check --diff tap_db2/
poetry run ruff format --check tap_db2/
poetry run mypy .