aboutsummaryrefslogtreecommitdiffstats
path: root/.travis.yml
blob: 8429d3aad7eef3cab4ba5c348c8dff623a5cc4b5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
language: python
dist: trusty
python:
  - "2.7"
  - "3.5"
before_install:
  - sudo add-apt-repository ppa:beineri/opt-qt551-trusty -y
  - sudo apt-get update
install:
  - sudo apt-get install qt55-meta-full -y
script:
  - source /opt/qt55/bin/qt55-env.sh
  - python setup.py install --jobs=2 --build-tests # --openssl=/path/to/openssl/bin
  # how do we separate the build step and the tests, to see both as a result?