Browse Source

Tox and travis config

pull/40/head
Simon Conseil 13 years ago
parent
commit
d8f9df2cd8
  1. 3
      .gitignore
  2. 2
      .travis.yml
  3. 14
      tox.ini

3
.gitignore vendored

@ -3,8 +3,9 @@
*.pyc
*_flymake
.coverage
.sass-cache/
.ropeproject/
.sass-cache/
.tox/
nose.cfg
MANIFEST
_build/

2
.travis.yml

@ -1,7 +1,7 @@
language: python
python:
- "2.7"
- "2.6"
- "3.3"
before_install:
# Dependencies to build PIL
- sudo apt-get update -qq

14
tox.ini

@ -0,0 +1,14 @@
[tox]
envlist = py27,py33
[testenv]
commands = py.test
deps =
[testenv:py27]
deps =
pytest
[testenv:py33]
deps =
pytest
Loading…
Cancel
Save