2014-01-02 10:12:25 -05:00
|
|
|
language: python
|
|
|
|
python:
|
|
|
|
- "2.7"
|
2018-02-06 14:54:24 -05:00
|
|
|
- "3.4"
|
2014-01-02 10:12:25 -05:00
|
|
|
virtualenv:
|
|
|
|
system_site_packages: true
|
|
|
|
before_install:
|
|
|
|
- sudo apt-get update
|
|
|
|
- sudo apt-get install -qq python-pyside --fix-missing
|
|
|
|
- sudo apt-get install -qq python-qt4 --fix-missing
|
|
|
|
- sudo apt-get install -qq python3-pyside --fix-missing
|
|
|
|
- sudo apt-get install -qq python3-pyqt4 --fix-missing
|
|
|
|
- "export DISPLAY=:99.0"
|
|
|
|
- "sh -e /etc/init.d/xvfb start"
|
|
|
|
before_script:
|
|
|
|
- cd example
|
|
|
|
script:
|
2018-02-07 14:03:24 -05:00
|
|
|
- python example.py --qt_from=pyqt --test
|
|
|
|
- python example.py --qt_from=pyside --test
|
2018-02-06 14:54:24 -05:00
|
|
|
|
2018-02-07 14:03:24 -05:00
|
|
|
- python example.py --qt_from=pyqt --no_dark --test
|
|
|
|
- python example.py --qt_from=pyside --no_dark --test
|