Dmitri Bogomolov
51b5e64f34
QtPy is a compatibility layer which allows to use the code written for PyQt5 with any python Qt binding: PyQt4, PyQt5, pyside or pyside2. Main differences in PyQt5: - all widget classes are now in QtWidgets package, not QtGui; - QString obsoleted by unicode (sip API 2); - changed the way of signals connection. Closes: #1191
23 lines
407 B
YAML
23 lines
407 B
YAML
language: python
|
|
cache: pip
|
|
dist: bionic
|
|
python:
|
|
- "2.7_with_system_site_packages"
|
|
- "3.7"
|
|
addons:
|
|
apt:
|
|
packages:
|
|
- build-essential
|
|
- libcap-dev
|
|
- python-pyqt5
|
|
- tor
|
|
- xvfb
|
|
install:
|
|
- pip install -r requirements.txt
|
|
- python setup.py install
|
|
- export PYTHONWARNINGS=all
|
|
script:
|
|
- python checkdeps.py
|
|
- xvfb-run src/bitmessagemain.py -t
|
|
- python -bm tests
|