.travis.yml 979 Bytes
Newer Older
rusty1s's avatar
rusty1s committed
1
2
3
4
5
language: python
sudo: required
dist: trusty
matrix:
  include:
rusty1s's avatar
rusty1s committed
6
    - python: 2.7
rusty1s's avatar
rusty1s committed
7
8
    - python: 3.5
    - python: 3.6
rusty1s's avatar
rusty1s committed
9
10
11
12
13
14
15
16
17
18
addons:
  apt:
    sources:
      - ubuntu-toolchain-r-test
    packages:
      - gcc-4.9
      - g++-4.9
before_install:
  - export CC="gcc-4.9"
  - export CXX="g++-4.9"
rusty1s's avatar
rusty1s committed
19
install:
rusty1s's avatar
rusty1s committed
20
21
22
  - if [[ $TRAVIS_PYTHON_VERSION == 2.7 ]]; then pip install https://download.pytorch.org/whl/cpu/torch-1.1.0-cp27-cp27mu-linux_x86_64.whl; fi
  - if [[ $TRAVIS_PYTHON_VERSION == 3.5 ]]; then pip install https://download.pytorch.org/whl/cpu/torch-1.1.0-cp35-cp35m-linux_x86_64.whl; fi
  - if [[ $TRAVIS_PYTHON_VERSION == 3.6 ]]; then pip install https://download.pytorch.org/whl/cpu/torch-1.1.0-cp36-cp36m-linux_x86_64.whl; fi
rusty1s's avatar
rusty1s committed
23
24
25
  - pip install pycodestyle
  - pip install flake8
  - pip install codecov
rusty1s's avatar
rusty1s committed
26
  - pip install torch-scatter
rusty1s's avatar
rusty1s committed
27
28
29
30
31
32
33
34
35
script:
  - pycodestyle .
  - flake8 .
  - python setup.py install
  - python setup.py test
after_success:
  - codecov
notifications:
  email: false