poezio/.travis.yml

13 lines
215 B
YAML
Raw Normal View History

2014-10-28 16:05:15 +00:00
language: python
python:
2016-08-21 13:39:46 +00:00
- "3.5"
- "3.6"
2018-08-11 11:03:56 +00:00
- "3.7"
- "3.8-dev"
2014-10-28 16:05:15 +00:00
install:
- pip install -r requirements.txt
- python setup.py build_ext --inplace
2016-08-21 13:39:46 +00:00
- python setup.py install
2014-10-28 16:05:15 +00:00
script: make test
2016-08-21 13:39:46 +00:00