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

Use setuptools.find_packages in setup (#2363)
[etc/vim.git] / tox.ini
1 [tox]
2 envlist = {,ci-}py{36,37,38,39},fuzz
3
4 [testenv]
5 setenv = PYTHONPATH = {toxinidir}/src
6 skip_install = True
7 deps =
8     -r{toxinidir}/test_requirements.txt
9 ; parallelization is disabled on CI because pytest-dev/pytest-xdist#620 occurs too frequently
10 ; local runs can stay parallelized since they aren't rolling the dice so many times as like on CI
11 commands =
12     pip install -e .[d]
13     coverage erase
14     pytest tests --run-optional no_python2 \
15         !ci: --numprocesses auto \
16         --cov {posargs}
17     pip install -e .[d,python2]
18     pytest tests --run-optional python2 \
19         !ci: --numprocesses auto \
20         --cov --cov-append {posargs}
21     coverage report
22
23 [testenv:fuzz]
24 skip_install = True
25 deps =
26     -r{toxinidir}/test_requirements.txt
27     hypothesmith
28     lark-parser < 0.10.0
29 ; lark-parser's version is set due to a bug in hypothesis. Once it solved, that would be fixed.
30 commands =
31     pip install -e .[d]
32     coverage erase
33     coverage run fuzz.py
34     coverage report