forked from AICPS/hw2vec
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
33 lines (27 loc) · 981 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
language: python
notifications:
email:
- shihyuay@uci.edu
- qingronz@uci.edu
os:
- linux
python:
- "3.6"
env:
- COVERAGE_RCFILE=".coveragerc" PYLINTRC=".pylintrc"
install:
- pip install .
- pip install -r requirements_dev.txt
- sudo add-apt-repository universe
- sudo apt update
- sudo apt install graphviz
- pip install pygraphviz
- pip install torch==1.6.0+cpu torchvision==0.7.0+cpu -f https://download.pytorch.org/whl/torch_stable.html
- pip install --no-index torch-scatter -f https://pytorch-geometric.com/whl/torch-1.6.0+cpu.html
- pip install --no-index torch-sparse -f https://pytorch-geometric.com/whl/torch-1.6.0+cpu.html
- pip install --no-index torch-cluster -f https://pytorch-geometric.com/whl/torch-1.6.0+cpu.html
- pip install --no-index torch-spline-conv -f https://pytorch-geometric.com/whl/torch-1.6.0+cpu.html
- pip install torch-geometric==1.6.1
script:
- cd ./tests
- pytest --disable-pytest-warnings test.py