|
1 | 1 | [tox] |
2 | | -envlist = lint,py{35,36,37,38,39},pypy3,manifest,coverage-report |
| 2 | +envlist = lint,py{35,36,37,38,39,310},pypy3,manifest,coverage-report |
3 | 3 |
|
4 | 4 | [gh-actions] |
5 | 5 | python = |
6 | 6 | 3.5: py35, coverage-report |
7 | 7 | 3.6: py36, coverage-report |
8 | 8 | 3.7: py37, coverage-report |
9 | 9 | 3.8: py38, coverage-report |
10 | | - 3.9: py39, lint, manifest, coverage-report |
| 10 | + 3.9: py39, coverage-report |
| 11 | + 3.10: py310, lint, manifest, coverage-report |
11 | 12 | pypy3: pypy3, coverage-report |
12 | 13 |
|
13 | 14 | [testenv] |
|
17 | 18 | coverage |
18 | 19 | sh |
19 | 20 | click |
20 | | - py{35,36,37,38,39,py3}: ipython |
| 21 | + py{35,36,37,38,39,310,py3}: ipython |
21 | 22 | commands = coverage run --parallel -m pytest {posargs} |
22 | 23 |
|
23 | 24 | [testenv:lint] |
|
28 | 29 | types-mock |
29 | 30 | commands = |
30 | 31 | flake8 src tests |
| 32 | + mypy --python-version=3.10 src tests |
31 | 33 | mypy --python-version=3.9 src tests |
32 | 34 | mypy --python-version=3.8 src tests |
33 | 35 | mypy --python-version=3.7 src tests |
|
0 commit comments