mirror of
https://github.com/veekun/pokedex.git
synced 2024-08-20 18:16:34 +00:00
d828ee9a2e
I would explain why, but this commit will eventually be squashed into the other ones so there's no point. (Short explanation: without -e, the database location defaults to $ENV/lib/python2.7/site-packages/pokedex/data/pokedex.sqlite when running the pokedex command, but when running py.test it defaulted to ./pokedex/data/pokedex.sqlite, which obviously caused problems.)
9 lines
137 B
YAML
9 lines
137 B
YAML
language: python
|
|
python:
|
|
- "2.7"
|
|
- "3.4"
|
|
- "pypy"
|
|
|
|
install: pip install -e .
|
|
before_script: pokedex setup -v
|
|
script: py.test
|