Skip to content

Commit

Permalink
Testing: Create Tox and Travis CI config
Browse files Browse the repository at this point in the history
This will just build the package and install it for Python 2.7 and 3.4
  • Loading branch information
westphahl committed May 13, 2015
1 parent ea023b4 commit 07f4152
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .travis.yml
@@ -0,0 +1,5 @@
language: python
install:
- pip install tox
script:
- tox
11 changes: 11 additions & 0 deletions tox.ini
@@ -0,0 +1,11 @@
# Tox (http://tox.testrun.org/) 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 = py27, py34

[testenv]
commands =
deps =

0 comments on commit 07f4152

Please sign in to comment.