mirror of
https://github.com/veekun/pokedex.git
synced 2024-08-20 18:16:34 +00:00
51957b9b37
`sudo: false` used to be the way to opt in to their container-based infrastructure. That system was retired in 2018 and so the `sudo` option no longer does anything. Remove it. Travi CI supports multiple OSes now. Add `os: linux` to be explicit about which OS we want to test on.
16 lines
229 B
YAML
16 lines
229 B
YAML
os: linux
|
|
language: python
|
|
python:
|
|
- "2.7"
|
|
- "3.4"
|
|
- "3.5"
|
|
- "3.6"
|
|
- "3.7"
|
|
- "pypy"
|
|
- "pypy3"
|
|
|
|
install: pip install -e .
|
|
before_script: pokedex setup -v
|
|
script:
|
|
- py.test
|
|
- pokedex dump -l all
|