.travis.yml 394 Bytes
Newer Older
rusty1s's avatar
rusty1s committed
1
2
3
4
5
6
7
8
9
10
11
12
language: python
sudo: required
dist: trusty
matrix:
  include:
    - python: 2.7
    - python: 3.5
    - python: 3.6
install:
  - pip install pycodestyle
  - pip install flake8
  - pip install codecov
rusty1s's avatar
rusty1s committed
13
  - pip install torch
rusty1s's avatar
rusty1s committed
14
  - pip install cffi
rusty1s's avatar
rusty1s committed
15
16
17
18
19
20
21
22
23
script:
  - pycodestyle .
  - flake8 .
  - python setup.py install
  - python setup.py test
after_success:
  - codecov
notifications:
  email: false