File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -133,7 +133,7 @@ dmypy.json
133133# End of https://www.gitignore.io/api/python
134134.vscode /
135135.VScode *
136- * .ini
136+ Examples / * .ini
137137.DS_Store
138138pylint.out
139139.noseids
Original file line number Diff line number Diff line change 1+ [tox]
2+ minversion = 3.8.0
3+ envlist = py38, py39, flake8
4+ isolated_build = true
5+
6+ [gh-actions]
7+ python =
8+ 3.8: py38, flake8
9+ 3.9: py39
10+ 3.10: py310
11+
12+ [testenv]
13+ setenv =
14+ PYTHONPATH = {toxinidir}
15+ deps =
16+ -r{toxinidir}/requirements_dev.txt
17+ commands =
18+ pytest --basetemp ={envtmpdir}
19+
20+ [testenv:flake8]
21+ basepython = python3.8
22+ deps = flake8
23+ commands = flake8 dashio Examples tests utilities
24+
25+
26+ # [testenv:mypy]
27+ # basepython = python3.6
28+ # deps =
29+ # -r{toxinidir}/requirements_dev.txt
30+ # commands = mypy dashio
31+
You can’t perform that action at this time.
0 commit comments