forked from duckdb/dbt-duckdb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtox.ini
31 lines (27 loc) · 735 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
[tox]
skipsdist = True
envlist = py37,py38,py39,py310,py311
[testenv:{unit,py37,py38,py39,py310,py311,py}]
description = unit testing
skip_install = True
passenv = *
commands = {envpython} -m pytest {posargs} tests/unit
deps =
-rdev-requirements.txt
-e.
[testenv:{functional,py37,py38,py39,py310,py311,py}]
description = adapter plugin functional testing
skip_install = True
passenv = *
commands = {envpython} -m pytest {posargs} tests/functional/adapter
deps =
-rdev-requirements.txt
-e.
[testenv:{fsspec,py37,py38,py39,py310,py311,py}]
description = adapter plugin functional testing
skip_install = True
passenv = *
commands = {envpython} -m pytest {posargs} tests/functional/fsspec
deps =
-rdev-requirements.txt
-e.