Skip to content

Commit 448fbdf

Browse files
committed
Add tox
1 parent 6ed221e commit 448fbdf

File tree

4 files changed

+9
-0
lines changed

4 files changed

+9
-0
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,3 +12,5 @@ pip-selfcheck.json
1212
/tcl/
1313
/LICENSE.txt
1414
/samp_client.egg-info/
15+
/venv/
16+
/.tox/

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,6 @@ python:
55
- "3.5"
66
- "3.6"
77
- "3.7"
8+
- "3.8"
89
script:
910
- python -m unittest discover -v

requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
future==0.16.0
2+
tox==3.20.0

tox.ini

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
[tox]
2+
envlist = py27,py35,py36,py37,py38
3+
4+
[testenv]
5+
commands = python -m unittest discover -v

0 commit comments

Comments
 (0)