]> git.madduck.net Git - etc/vim.git/blob - tox.ini

madduck's git repository

Every one of the projects in this repository is available at the canonical URL git://git.madduck.net/madduck/pub/<projectpath> — see each project's metadata for the exact URL.

All patches and comments are welcome. Please squash your changes to logical commits before using git-format-patch and git-send-email to patches@git.madduck.net. If you'd read over the Git project's submission guidelines and adhered to them, I'd be especially grateful.

SSH access, as well as push access can be individually arranged.

If you use my repositories frequently, consider adding the following snippet to ~/.gitconfig and using the third clone URL listed for each project:

[url "git://git.madduck.net/madduck/"]
  insteadOf = madduck:

Add passing 3.11 CI by exempting blackd tests (#3234)
[etc/vim.git] / tox.ini
1 [tox]
2 envlist = {,ci-}py{36,37,38,39,310,311,py3},fuzz,run_self
3
4 [testenv]
5 setenv = PYTHONPATH = {toxinidir}/src
6 skip_install = True
7 # We use `recreate=True` because otherwise, on the second run of `tox -e py`,
8 # the `no_jupyter` tests would run with the jupyter extra dependencies installed.
9 # See https://github.com/psf/black/issues/2367.
10 recreate = True
11 deps =
12     -r{toxinidir}/test_requirements.txt
13 ; parallelization is disabled on CI because pytest-dev/pytest-xdist#620 occurs too frequently
14 ; local runs can stay parallelized since they aren't rolling the dice so many times as like on CI
15 commands =
16     pip install -e .[d]
17     coverage erase
18     pytest tests --run-optional no_jupyter \
19         !ci: --numprocesses auto \
20         --cov {posargs}
21     pip install -e .[jupyter]
22     pytest tests --run-optional jupyter \
23         -m jupyter \
24         !ci: --numprocesses auto \
25         --cov --cov-append {posargs}
26     coverage report
27
28 [testenv:{,ci-}pypy3]
29 setenv = PYTHONPATH = {toxinidir}/src
30 skip_install = True
31 recreate = True
32 deps =
33     -r{toxinidir}/test_requirements.txt
34 ; a separate worker is required in ci due to https://foss.heptapod.net/pypy/pypy/-/issues/3317
35 ; this seems to cause tox to wait forever
36 ; remove this when pypy releases the bugfix
37 commands =
38     pip install -e .[d]
39     coverage erase
40     pytest tests \
41         --run-optional no_jupyter \
42         !ci: --numprocesses auto \
43         ci: --numprocesses 1 \
44         --cov {posargs}
45     pip install -e .[jupyter]
46     pytest tests --run-optional jupyter \
47         -m jupyter \
48         !ci: --numprocesses auto \
49         ci: --numprocesses 1 \
50         --cov --cov-append {posargs}
51     coverage report
52
53 [testenv:{,ci-}311]
54 setenv = PYTHONPATH = {toxinidir}/src
55 skip_install = True
56 recreate = True
57 deps =
58     -r{toxinidir}/test_requirements.txt
59 ; a separate worker is required in ci due to https://foss.heptapod.net/pypy/pypy/-/issues/3317
60 ; this seems to cause tox to wait forever
61 ; remove this when pypy releases the bugfix
62 commands =
63     pip install -e .
64     coverage erase
65     pytest tests \
66         --run-optional no_jupyter \
67         !ci: --numprocesses auto \
68         ci: --numprocesses 1 \
69         --cov {posargs}
70     pip install -e .[jupyter]
71     pytest tests --run-optional jupyter \
72         -m jupyter \
73         !ci: --numprocesses auto \
74         ci: --numprocesses 1 \
75         --cov --cov-append {posargs}
76     coverage report
77
78 [testenv:fuzz]
79 skip_install = True
80 deps =
81     -r{toxinidir}/test_requirements.txt
82     hypothesmith
83     lark-parser
84 commands =
85     pip install -e .[d]
86     coverage erase
87     coverage run {toxinidir}/scripts/fuzz.py
88     coverage report
89
90 [testenv:run_self]
91 setenv = PYTHONPATH = {toxinidir}/src
92 skip_install = True
93 commands =
94     pip install -e .[d]
95     black --check {toxinidir}/src {toxinidir}/tests {toxinidir}/setup.py