Home | History | Annotate | Download | only in bart
      1 language: python
      2 python:
      3   - "2.7"
      4 before_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
     10 install:
     11   - pip install matplotlib
     12   - pip install Cython --install-option="--no-cython-compile"
     13   - pip install pandas
     14   - pip install ipython[all]
     15   - pip install --upgrade trappy
     16 script: nosetests
     17 virtualenv:
     18   system_site_packages: true
     19 notifications:
     20   email:
     21     recipients:
     22       - javi.merino (a] arm.com
     23     on_success: never
     24     on_failure: always
     25 cache:
     26   - pip
     27