• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1language: 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
12  - pip install Cython --install-option="--no-cython-compile"
13  - pip install pandas
14  # 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"
17env:
18  - MPLBACKEND=agg
19script: nosetests
20virtualenv:
21  system_site_packages: true
22notifications:
23  email:
24    recipients:
25      - javi.merino@arm.com
26    on_success: never
27    on_failure: always
28cache:
29  - pip
30