-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtox.ini
55 lines (44 loc) · 1.56 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
# For use with pyct (https://github.com/pyviz-dev/pyct), but just standard
# tox config (works with tox alone).
[tox]
# python version test group extra envs extra commands
envlist = {py39,py310,py311,py312}-{lint,unit,unit_deploy,all}-{default}-{dev,pkg}
build = wheel
[_lint]
description = Flake check python and notebooks, and verify notebooks
deps = .[tests]
# verify takes quite a long time - maybe split into flakes and lint?
commands = flake8
[_unit]
description = Run unit tests
deps = .[tests]
commands = pytest intake_dremio --cov=./
[_unit_deploy]
description = Run unit tests without coverage
deps = .[tests]
commands = pytest intake_dremio
[_all]
description = Run all tests (but only including default examples)
deps = .[examples, tests]
commands = {[_lint]commands}
{[_unit_deploy]commands}
[testenv]
changedir = {envtmpdir}
commands = unit: {[_unit]commands}
unit_deploy: {[_unit_deploy]commands}
lint: {[_lint]commands}
all: {[_all]commands}
deps = unit: {[_unit]deps}
unit_deploy: {[_unit_deploy]deps}
lint: {[_lint]deps}
all: {[_all]deps}
[pytest]
addopts = -v --pyargs --doctest-modules --doctest-ignore-import-errors
norecursedirs = doc .git dist build _build .ipynb_checkpoints
[flake8]
include = *.py
# run_tests.py is generated by conda build, which appears to have a
# bug resulting in code being duplicated a couple of times.
exclude = .git,__pycache__,.tox,.eggs,*.egg,doc,dist,build,_build,.ipynb_checkpoints,run_test.py
ignore = E,
W