forked from daftspaniel/text_adventure_parser
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtox.ini
More file actions
33 lines (31 loc) · 595 Bytes
/
tox.ini
File metadata and controls
33 lines (31 loc) · 595 Bytes
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
[tox]
isolated_build = True
envlist = py311
[gh-actions]
python =
3.11: py311
[testenv]
deps =
black
coverage
flake8
mccabe
mypy
pylint
pytest
commands =
black text_adventure_parser
flake8 text_adventure_parser
pylint text_adventure_parser
mypy text_adventure_parser
black run_demo.py
flake8 run_demo.py
black run_game.py
flake8 run_game.py
black demo_game
flake8 demo_game
pylint demo_game
mypy demo_game
coverage erase
coverage run --include=text_adventure_parser/* -m pytest -ra
coverage report -m