forked from Kohulan/DECIMER-Image_Transformer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtox.ini
More file actions
40 lines (37 loc) · 830 Bytes
/
tox.ini
File metadata and controls
40 lines (37 loc) · 830 Bytes
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
[tox]
envlist = py{310,311,312}, lint
isolated_build = true
[testenv]
deps =
pytest
commands = pytest -p no:warnings --basetemp="{envtmpdir}" {posargs}
[testenv:lint]
basepython = python3
skip_install = true
deps = flake8
commands = flake8 .
[flake8]
ignore = E226, E302, E41, E501, W504, F821, E203, W605, W503, F401
exclude =
__pycache__,
.git,
.eggs,
.github,
.tox,
docs/conf.py,
build,
dist,
*.pyc,
*.egg-info,
.cache,
Python_Requirements.txt,
CITATION.cff,
setup.py,
Benchmark/run_decimer_save_results.py,
DECIMER/__init__.py,
DECIMER/Repack_model.py
DECIMER/efficientnetv2/effnetv2_configs.py,
DECIMER/efficientnetv2/effnetv2_model.py,
DECIMER/efficientnetv2/hparams.py,
DECIMER/efficientnetv2/utils.py,
Tests/test_functions.py,