-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
tox.ini
40 lines (36 loc) · 749 Bytes
/
tox.ini
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
[tox]
envlist=flake8,,py37,py38,py39,py310,pypy3,docs
skip_missing_interpreters=True
[gh-actions]
python =
3.7: py37
3.8: py38
3.9: py39
3.10: py310
pypy3: pypy-3
[testenv]
commands=
pip install -e .
pytest -p no:logging --cov=src/aioflask --cov-branch examples/aioflaskr/tests
pytest -p no:logging --cov=src/aioflask --cov-branch --cov-report=term-missing --cov-report=xml --cov-append tests
deps=
aiosqlite
greenletio
alchemical
flask-login
pytest
pytest-asyncio
pytest-cov
[testenv:flake8]
deps=
flake8
commands=
flake8 --ignore=F401,F403 --exclude=".*" src/aioflask tests
[testenv:docs]
changedir=docs
deps=
sphinx
whitelist_externals=
make
commands=
make html