boltons/.travis.yml

13 lines
198 B
YAML
Raw Normal View History

language: python
2016-02-29 11:09:15 +00:00
sudo: false
cache: pip
python:
2015-04-11 09:39:48 +00:00
- "2.6"
- "2.7"
- "3.4"
2016-02-29 11:09:15 +00:00
- "3.5"
2015-04-10 05:17:47 +00:00
- "pypy"
install: "pip install -r requirements-test.txt"
script: "py.test --doctest-modules boltons tests"