Add a .travis.yml

This commit is contained in:
Robert Collins 2015-10-08 13:04:10 +13:00
parent 64dcba4234
commit 20cd3e0458
5 changed files with 34 additions and 2 deletions

24
.travis.yml Normal file
View File

@ -0,0 +1,24 @@
sudo: false
language: python
python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"
- "3.4"
- "3.5"
- "pypy"
- pypy3
- "nightly"
install:
- pip install -U pip
- pip install -U wheel setuptools pbr
- pip install -U .[docs,test]
- pip list
- python --version
script:
- make check
- rst2html.py README README.html

3
NEWS
View File

@ -6,6 +6,9 @@ fixtures release notes
NEXT
~~~~
* ``fixtures`` now has CI testing via Travis, no more manual work.
(Robert Collins)
1.3.1
~~~~~

View File

@ -23,3 +23,9 @@ packages =
[bdist_wheel]
universal = 1
[extras]
test =
mock
docs =
docutils

View File

@ -1 +0,0 @@
mock;python_version<'3.3'

View File

@ -8,5 +8,5 @@ usedevelop = True
install_command = pip install -U {opts} {packages}
setenv = VIRTUAL_ENV={envdir}
whitelist_externals = make
deps = -r{toxinidir}/requirements.txt
deps = .[docs,test]
commands = make check