2017-10-30 00:32:31 +08:00
|
|
|
language: python
|
|
|
|
python:
|
|
|
|
- "3.6"
|
|
|
|
# command to install dependencies
|
2017-12-01 00:50:14 +08:00
|
|
|
before_install:
|
|
|
|
- sudo apt-get -qq update
|
|
|
|
- sudo apt-get install libopenblas-dev
|
2017-10-30 00:32:31 +08:00
|
|
|
install:
|
|
|
|
- pip install http://download.pytorch.org/whl/cu75/torch-0.2.0.post3-cp36-cp36m-manylinux1_x86_64.whl
|
|
|
|
- pip install numpy
|
|
|
|
- pip install visdom
|
|
|
|
# command to run tests
|
|
|
|
script:
|
2017-12-01 00:42:54 +08:00
|
|
|
- pip install -e .
|
2017-11-30 03:14:26 +08:00
|
|
|
- pytest ./test
|