This repository has been archived on 2024-12-19. You can view files and clone it, but cannot push or open issues or pull requests.
PyBitmessage-2024-12-19/.travis.yml
Dmitri Bogomolov 8ae8f57e4c
Initial support for PyQt5 (main window shown) using QtPy package.
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
2020-07-16 13:46:48 +03:00

20 lines
369 B
YAML

language: python
python:
- "2.7"
addons:
apt:
packages:
- build-essential
- libcap-dev
- python-pyqt5
- tor
- xvfb
install:
- pip install -r requirements.txt
- ln -s src pybitmessage # tests environment
- python setup.py install
script:
- python checkdeps.py
- xvfb-run src/bitmessagemain.py -t
- python setup.py test