Skip to content

Commit

Permalink
Add a tox config for testing multiple python versions.
Browse files Browse the repository at this point in the history
  • Loading branch information
qiuwch committed Jun 14, 2017
1 parent b401e9b commit 1a588ed
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
*.ipynb_checkpoints/
.cache/
.DS_Store/
.tox/

Binaries/
Intermediate/
Expand Down
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ python:
install:
- pip install unrealcv
script:
- pytest test/client
- py.test test/client
# There is no way to test ipc and commands with travis, they need to be tested locally
# Because travis can not run the UE4 binary.
8 changes: 8 additions & 0 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
[tox]
envlist = py27
skipsdist = True
[testenv]
deps =
pytest
unrealcv
commands = py.test test/client/

0 comments on commit 1a588ed

Please sign in to comment.