aboutsummaryrefslogtreecommitdiff
path: root/.travis.yml
blob: b88acd15def23b521e6478e8d5157f8158b2832c (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:
  - sudo apt-get update
  # install make
  - sudo apt-get install build-essential
  # install virtualenv
  - pip install -U virtualenv

install:
  # disable the default travis install action
  - true

script:
  - make clean
  - make test