blob: b8713748ce19d36af949cd7d9466ff79de6b9a35 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
language: python
python:
- "3.6"
env:
- CC="gcc"
install:
- pip install --upgrade pip
- pip install -r requirements.txt
- pip install nose
- python setup.py build_ext --inplace
script:
- nosetests -v
|