Skip to content

Commit 6f8acd4

Browse files
committed
Add files for travis-ci
1 parent e0e0e03 commit 6f8acd4

File tree

3 files changed

+16
-0
lines changed

3 files changed

+16
-0
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
*.pyc
22
/*.egg-info
3+
/.pytest_cache
4+
/.tox
35
/MANIFEST
46
/build
57
/dist

.travis.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
language: python
2+
python:
3+
- "2.7"
4+
- "3.3"
5+
- "3.5"
6+
- "nightly"
7+
install: pip install tox-travis
8+
script: "tox"

tox.ini

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
[tox]
2+
envlist = py27, py35, py36
3+
4+
[testenv]
5+
deps = pytest
6+
commands = pytest

0 commit comments

Comments
 (0)