Dmitri Bogomolov
6029ec85b6
Use 2.7_with_system_site_packages for python2 to run qt tests as suggested in Travis doc instead of bypassing virtualenv by shebang.
22 lines
379 B
YAML
22 lines
379 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-qt4
|
|
- tor
|
|
- xvfb
|
|
install:
|
|
- pip install -r requirements.txt
|
|
- python setup.py install
|
|
script:
|
|
- python checkdeps.py
|
|
- xvfb-run src/bitmessagemain.py -t
|
|
- python setup.py test
|