aboutsummaryrefslogtreecommitdiff
path: root/.travis.yml
blob: 07c87ae2c3de70b5d508aa67cfca255661d7beb3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
language: python
python:
  - "3.6"

before_install:
  - apt-get update
  # install make
  - apt-get install build-essential
  # install virtualenv
  - pip install -U virtualenv

install:
  # disable the default travis install action
  - true

script:
  - make clean
  - make test