From eed2b3fc82d5f3b60dffdb6b262ef8ba4d9a07c7 Mon Sep 17 00:00:00 2001 From: Dmitri Bogomolov <4glitch@gmail.com> Date: Mon, 26 Oct 2020 14:26:37 +0200 Subject: [PATCH] No xvfb-run on windows --- .travis.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 9d4423e8..4ac4d386 100644 --- a/.travis.yml +++ b/.travis.yml @@ -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