blob: 2886473392340a7ad5f20f5ff525fde76923c82b [file] [log] [blame]
Michele Di Giorgio55d2d5d2016-03-15 23:26:32 +00001language: python
2python:
3 - "2.7"
4before_install:
5 - sudo apt-get update -qq
6 - sudo apt-get install -qq libfreetype6-dev
7 - sudo apt-get install -qq libpng12-dev
8 - wget http://ftp.us.debian.org/debian/pool/main/t/trace-cmd/trace-cmd_2.4.0-1_amd64.deb
9 - sudo dpkg -i trace-cmd_2.4.0-1_amd64.deb
10install:
11 - pip install matplotlib
Brendan Jackman5bc7b452016-10-07 18:08:13 +010012 - pip install Cython --install-option="--no-cython-compile"
Michele Di Giorgio55d2d5d2016-03-15 23:26:32 +000013 - pip install pandas
Brendan Jackman207e5432017-04-24 11:53:38 +010014 # IPython 6.0.0 requires Python 3.3. Use an older version so we can keep using
15 # Python 2.7
16 - pip install "ipython[all]<6.0.0"
Javi Merinob19c84b2016-09-05 13:42:17 +010017env:
18 - MPLBACKEND=agg
Michele Di Giorgio55d2d5d2016-03-15 23:26:32 +000019script: nosetests
20virtualenv:
21 system_site_packages: true
22notifications:
Michele Di Giorgio7b5b4662016-03-31 11:00:57 +010023 email:
24 recipients:
25 - javi.merino@arm.com
26 on_success: never
27 on_failure: always
Michele Di Giorgio55d2d5d2016-03-15 23:26:32 +000028cache:
29 - pip