summaryrefslogtreecommitdiffstats
path: root/tox.ini
blob: b63d87c93f0887ff13748be44240dc27a6ae4360 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
[tox]
downloadcache = {toxworkdir}/cache/
envlist =
    py38,
    py39,
    py310,

[testenv]
basepython =
    py38: python3.8
    py39: python3.9
    py310: python3.10
commands =
    pip install -e .
    # actual flake8 test
    flake8 sshuttle tests
    # flake8 complexity warnings
    flake8 sshuttle tests --exit-zero --max-complexity=10
    pytest
deps =
    -rrequirements-tests.txt