No xvfb-run on windows

This commit is contained in:
Dmitri Bogomolov 2020-10-26 14:26:37 +02:00
parent 8c83dbf0f6
commit eed2b3fc82
Signed by untrusted user: g1itch
GPG Key ID: 720A756F18DEED13

View File

@ -28,5 +28,9 @@ install:
- python setup.py install
script:
- python checkdeps.py
- xvfb-run src/bitmessagemain.py -t
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then
xvfb-run src/bitmessagemain.py -t;
else
python src/bitmessagemain.py -t;
fi
- python setup.py test