From 8c812eb5273bd005250a9fd4167e1993d79a3a56 Mon Sep 17 00:00:00 2001 From: Ian Craggs Date: Tue, 20 Mar 2018 23:39:12 +0000 Subject: [PATCH] Fix running of Python broker --- travis-install.sh | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/travis-install.sh b/travis-install.sh index 6aee8979..17e69555 100755 --- a/travis-install.sh +++ b/travis-install.sh @@ -10,19 +10,20 @@ if [ "$TRAVIS_OS_NAME" == "linux" ]; then git clone https://github.com/eclipse/paho.mqtt.testing.git cd paho.mqtt.testing/interoperability - python3 startbroker.py -c localhost_testing.conf + python3 startbroker.py -c localhost_testing.conf & cd ../.. fi if [ "$TRAVIS_OS_NAME" == "osx" ]; then pwd brew update - brew install openssl mosquitto - brew services stop mosquitto - #/usr/local/sbin/mosquitto -c test/tls-testing/mosquitto.conf & + # brew install openssl mosquitto + # brew services stop mosquitto + # /usr/local/sbin/mosquitto -c test/tls-testing/mosquitto.conf & + brew install python3 git clone https://github.com/eclipse/paho.mqtt.testing.git cd paho.mqtt.testing/interoperability - python3 startbroker.py -c localhost_testing.conf + python3 startbroker.py -c localhost_testing.conf & cd ../.. fi