File: .travis.yml

package info (click to toggle)
pyside2 5.15.16-3.1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 35,432 kB
  • sloc: python: 223,888; cpp: 80,354; xml: 17,282; sh: 73; makefile: 39; javascript: 16
file content (14 lines) | stat: -rw-r--r-- 417 bytes parent folder | download | duplicates (6)
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?