]> 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:

Remove usage of Pipenv, rely on good ol' `pip` and `virtualenv` in docs (#2717)
[etc/vim.git] / tox.ini
1 [tox]
2 envlist = {,ci-}py{36,37,38,39,310,py3},fuzz
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_python2` tests would run with the Python2 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_python2 \
19         --run-optional no_jupyter \
20         !ci: --numprocesses auto \
21         --cov {posargs}
22     pip install -e .[d,python2]
23     pytest tests --run-optional python2 \
24         --run-optional no_jupyter \
25         !ci: --numprocesses auto \
26         --cov --cov-append {posargs}
27     pip install -e .[jupyter]
28     pytest tests --run-optional jupyter \
29         -m jupyter \
30         !ci: --numprocesses auto \
31         --cov --cov-append {posargs}
32     coverage report
33
34 [testenv:{,ci-}pypy3]
35 setenv = PYTHONPATH = {toxinidir}/src
36 skip_install = True
37 recreate = True
38 deps =
39     -r{toxinidir}/test_requirements.txt
40 ; a separate worker is required in ci due to https://foss.heptapod.net/pypy/pypy/-/issues/3317
41 ; this seems to cause tox to wait forever
42 ; remove this when pypy releases the bugfix
43 commands =
44     pip install -e .[d]
45     coverage erase
46     pytest tests --run-optional no_python2 \
47         --run-optional no_jupyter \
48         !ci: --numprocesses auto \
49         ci: --numprocesses 1 \
50         --cov {posargs}
51     pip install -e .[jupyter]
52     pytest tests --run-optional jupyter \
53         -m jupyter \
54         !ci: --numprocesses auto \
55         ci: --numprocesses 1 \
56         --cov --cov-append {posargs}
57     coverage report
58
59 [testenv:fuzz]
60 skip_install = True
61 deps =
62     -r{toxinidir}/test_requirements.txt
63     hypothesmith
64     lark-parser < 0.10.0
65 ; lark-parser's version is set due to a bug in hypothesis. Once it solved, that would be fixed.
66 commands =
67     pip install -e .[d]
68     coverage erase
69     coverage run fuzz.py
70     coverage report