aboutsummaryrefslogtreecommitdiff
path: root/.travis.yml
blob: 2886473392340a7ad5f20f5ff525fde76923c82b (plain)
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
language: python
python:
  - "2.7"
before_install:
  - sudo apt-get update -qq
  - sudo apt-get install -qq libfreetype6-dev
  - sudo apt-get install -qq libpng12-dev
  - wget http://ftp.us.debian.org/debian/pool/main/t/trace-cmd/trace-cmd_2.4.0-1_amd64.deb
  - sudo dpkg -i trace-cmd_2.4.0-1_amd64.deb
install:
  - pip install matplotlib
  - pip install Cython --install-option="--no-cython-compile"
  - pip install pandas
  # IPython 6.0.0 requires Python 3.3. Use an older version so we can keep using
  # Python 2.7
  - pip install "ipython[all]<6.0.0"
env:
  - MPLBACKEND=agg
script: nosetests
virtualenv:
  system_site_packages: true
notifications:
  email:
    recipients:
      - javi.merino@arm.com
    on_success: never
    on_failure: always
cache:
  - pip