2015-01-02 14:58:31 +00:00
|
|
|
language: python
|
2015-01-05 17:00:10 +00:00
|
|
|
|
|
|
|
os:
|
|
|
|
- linux
|
|
|
|
- osx
|
|
|
|
|
2015-01-02 14:58:31 +00:00
|
|
|
python:
|
|
|
|
- "2.7"
|
|
|
|
- "3.4"
|
2015-01-03 11:03:41 +00:00
|
|
|
|
2015-04-19 08:56:32 +00:00
|
|
|
# install dependencies
|
2015-01-02 14:58:31 +00:00
|
|
|
install:
|
2015-01-03 10:51:58 +00:00
|
|
|
- "pip install --upgrade setuptools"
|
2015-01-30 07:06:02 +00:00
|
|
|
- "pip install -r requirements.txt"
|
2015-01-30 08:48:34 +00:00
|
|
|
- "export PYTHONPATH=`pwd`"
|
2015-01-30 07:06:02 +00:00
|
|
|
- "python setup.py build_ext --inplace"
|
2015-04-19 08:56:32 +00:00
|
|
|
# run tests
|
2015-01-05 08:31:40 +00:00
|
|
|
script:
|
2015-01-05 13:53:41 +00:00
|
|
|
- py.test tests/
|