mirror of
https://github.com/veekun/pokedex.git
synced 2024-08-20 18:16:34 +00:00
6e9db09442
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.
12 lines
175 B
YAML
12 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
|