forked from microsoft/TextWorld
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtox.ini
More file actions
34 lines (31 loc) · 643 Bytes
/
tox.ini
File metadata and controls
34 lines (31 loc) · 643 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
34
# tox (https://tox.readthedocs.io/) is a tool for running tests
# in multiple virtualenvs. This configuration file will run the
# test suite on all supported python versions. To use it, "pip install tox"
# and then run "tox" from this directory.
[tox]
envlist = py35,py36
skip_missing_interpreters=True
[testenv]
commands = nosetests textworld
deps =
nose
-rrequirements.txt
[flake8]
max-line-length = 127
max-complexity = 12
ignore=
E741
W503
C901
per-file-ignores =
__init__.py:F401
filename =
*.py
scripts/tw-*
exclude =
.git,
__pycache__,
docs,
./textworld/thirdparty,
build,
dist