veekun_pokedex/.travis.yml
Andrew Ekstedt 6e9db09442 Travis: Drop Python 2.6
Markdown keeps breaking the 2.6 build. We could pin an earlier version,
or we can simply drop 2.6 support. The Python world is moving on; time
for us to do the same.
2015-11-05 12:39:01 -08:00

13 lines
175 B
YAML

language: python
python:
- "2.7"
- "3.4"
- "3.5"
- "pypy"
- "pypy3"
install: pip install -e .
before_script: pokedex setup -v
script: py.test
sudo: false