-
Notifications
You must be signed in to change notification settings - Fork 0
/
tox.ini
76 lines (69 loc) · 2.09 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
[tox]
# En envlist ponemos los entornos que queramos utilizar en el proyecto
# El formato es una lista de keys separada por comas
envlist =
# Las keys que contienen py* son builtins
# Esto quiere decir que tox las detecta y sabe interpretar que nos
# referimos a nuestros intérpretes de python (py36 es python 3.6,
# py37 python 3.7, etc.)
py311-lint,
py311-test
# Estas keys son custom y tienen que definirse en este documento
# (por ejemplo, flake8 necesita [testenv:flake8])
; coverage-report
skip_missing_interpreters = True
# La part [testenv] es el comportamiento por defecto de cada una de las
# partes de tox. Si se sobreescribe alguno de los atributos
# La parte [testenv] sirve para determinar las secciones del entorno
[testenv]
skip_install = true
# Tenemos que definir lint que se lo definimos aquí
[lint]
basepython = python3.11 # En caso que no se sobreescriba en el entorno que herede
deps =
-cconstraints.txt
flake8
# helper to generate HTML reports:
flake8-html
# Useful flake8 plugins that are Python and Plone specific:
flake8-coding
flake8-debugger
flake8-deprecated
flake8-print
#flake8-pytest
flake8-todo
mccabe
# Potential flake8 plugins that should be used: # TBD
#flake8-blind-except
#flake8-commas
#flake8-docstrings
#flake8-mypy
#flake8-pep3101
#flake8-plone-hasattr
#flake8-string-format
#flake8_strict
#flake8-quotes
#flake8-polyfill
allowlist_externals =
mkdir
commands =
; flake8 setup.py src {posargs}
mkdir -p {toxinidir}/reports/flake8
flake8 --format=html --htmldir={toxinidir}/reports/flake8 --doctests {toxinidir}/src {toxinidir}/setup.py
# black --check --diff -v {toxinidir}/src {toxinidir}/setup.py
[testenv:py311-lint]
basepython = python3.11
skip_install = true
deps = {[lint]deps}
commands = {[lint]commands}
allowlist_externals = {[lint]allowlist_externals}
[test]
basepython = python3.11 # En caso que no se sobreescriba en el entorno que herede
commands = bin/test
allowlist_externals =
bin/test
[testenv:py311-test]
basepython = python3.11
skip_install = true
commands = {[test]commands}
allowlist_externals = {[test]allowlist_externals}