mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-11-05 17:01:17 -05:00
25 lines
683 B
YAML
25 lines
683 B
YAML
language: python
|
|
python:
|
|
- "2.7"
|
|
- "3.3"
|
|
- "3.4"
|
|
- "3.5"
|
|
- "3.6"
|
|
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:
|
|
- python example.py --qt_from=pyqt --travis
|
|
- python example.py --qt_from=pyside --travis
|
|
|
|
- python example.py --qt_from=pyqt --no_dark --travis
|
|
- python example.py --qt_from=pyside --no_dark --travis |