Dmitri Bogomolov
e77238fa07
- make separate tests runner - tests.py; python setup.py test still works - tox.ini with coverage config - -b: issue warnings about comparing bytearray with unicode - export PYTHONWARNINGS=all on stage install
23 lines
405 B
YAML
23 lines
405 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
|
|
- export PYTHONWARNINGS=all
|
|
script:
|
|
- python checkdeps.py
|
|
- xvfb-run src/bitmessagemain.py -t
|
|
- python -bm tests
|