From: Roger Light Date: Mon, 21 Apr 2014 15:14:55 +0000 (+0100) Subject: /usr/bin/python -> /usr/bin/env python X-Git-Tag: v0.9~14 X-Git-Url: https://git.michaelhowe.org/gitweb/?a=commitdiff_plain;h=fee47e6ee4ac55ca8c4aa86c988d3da67b4f77e7;p=packages%2Fp%2Fpaho-mqtt.git /usr/bin/python -> /usr/bin/env python Change-Id: Ib43b19c660c2724834014219929d1d6281518e34 --- diff --git a/test/lib/01-con-discon-success.py b/test/lib/01-con-discon-success.py index 5f7b304..d5ad175 100755 --- a/test/lib/01-con-discon-success.py +++ b/test/lib/01-con-discon-success.py @@ -1,4 +1,4 @@ -#!/usr/bin/python +#!/usr/bin/env python # Test whether a client produces a correct connect and subsequent disconnect. diff --git a/test/lib/01-keepalive-pingreq.py b/test/lib/01-keepalive-pingreq.py index 7faf229..9196629 100755 --- a/test/lib/01-keepalive-pingreq.py +++ b/test/lib/01-keepalive-pingreq.py @@ -1,4 +1,4 @@ -#!/usr/bin/python +#!/usr/bin/env python # Test whether a client sends a pingreq after the keepalive time diff --git a/test/lib/01-no-clean-session.py b/test/lib/01-no-clean-session.py index f4aa415..7afbf3a 100755 --- a/test/lib/01-no-clean-session.py +++ b/test/lib/01-no-clean-session.py @@ -1,4 +1,4 @@ -#!/usr/bin/python +#!/usr/bin/env python # Test whether a client produces a correct connect with clean session not set. diff --git a/test/lib/01-unpwd-set.py b/test/lib/01-unpwd-set.py index 0a1bf88..1756d17 100755 --- a/test/lib/01-unpwd-set.py +++ b/test/lib/01-unpwd-set.py @@ -1,4 +1,4 @@ -#!/usr/bin/python +#!/usr/bin/env python # Test whether a client produces a correct connect with a username and password. diff --git a/test/lib/01-will-set.py b/test/lib/01-will-set.py index e576895..aad12c2 100755 --- a/test/lib/01-will-set.py +++ b/test/lib/01-will-set.py @@ -1,4 +1,4 @@ -#!/usr/bin/python +#!/usr/bin/env python # Test whether a client produces a correct connect with a will. # Will QoS=1, will retain=1. diff --git a/test/lib/01-will-unpwd-set.py b/test/lib/01-will-unpwd-set.py index fb82836..0ff9294 100755 --- a/test/lib/01-will-unpwd-set.py +++ b/test/lib/01-will-unpwd-set.py @@ -1,4 +1,4 @@ -#!/usr/bin/python +#!/usr/bin/env python # Test whether a client produces a correct connect with a will, username and password. diff --git a/test/lib/02-subscribe-qos0.py b/test/lib/02-subscribe-qos0.py index d526d76..80998e4 100755 --- a/test/lib/02-subscribe-qos0.py +++ b/test/lib/02-subscribe-qos0.py @@ -1,4 +1,4 @@ -#!/usr/bin/python +#!/usr/bin/env python # Test whether a client sends a correct SUBSCRIBE to a topic with QoS 0. diff --git a/test/lib/02-subscribe-qos1.py b/test/lib/02-subscribe-qos1.py index afa5b5b..efcaf31 100755 --- a/test/lib/02-subscribe-qos1.py +++ b/test/lib/02-subscribe-qos1.py @@ -1,4 +1,4 @@ -#!/usr/bin/python +#!/usr/bin/env python # Test whether a client sends a correct SUBSCRIBE to a topic with QoS 1. diff --git a/test/lib/02-subscribe-qos2.py b/test/lib/02-subscribe-qos2.py index ab29fd4..fcbf2dd 100755 --- a/test/lib/02-subscribe-qos2.py +++ b/test/lib/02-subscribe-qos2.py @@ -1,4 +1,4 @@ -#!/usr/bin/python +#!/usr/bin/env python # Test whether a client sends a correct SUBSCRIBE to a topic with QoS 2. diff --git a/test/lib/02-unsubscribe.py b/test/lib/02-unsubscribe.py index f3f6422..33b6102 100755 --- a/test/lib/02-unsubscribe.py +++ b/test/lib/02-unsubscribe.py @@ -1,4 +1,4 @@ -#!/usr/bin/python +#!/usr/bin/env python # Test whether a client sends a correct UNSUBSCRIBE packet. diff --git a/test/lib/03-publish-b2c-qos1.py b/test/lib/03-publish-b2c-qos1.py index 0b5af94..aa9c133 100755 --- a/test/lib/03-publish-b2c-qos1.py +++ b/test/lib/03-publish-b2c-qos1.py @@ -1,4 +1,4 @@ -#!/usr/bin/python +#!/usr/bin/env python # Test whether a client responds correctly to a PUBLISH with QoS 1. diff --git a/test/lib/03-publish-b2c-qos2.py b/test/lib/03-publish-b2c-qos2.py index 86c820b..2593b8f 100755 --- a/test/lib/03-publish-b2c-qos2.py +++ b/test/lib/03-publish-b2c-qos2.py @@ -1,4 +1,4 @@ -#!/usr/bin/python +#!/usr/bin/env python # Test whether a client responds correctly to a PUBLISH with QoS 1. diff --git a/test/lib/03-publish-c2b-qos1-disconnect.py b/test/lib/03-publish-c2b-qos1-disconnect.py index a2f6789..27f7c4f 100755 --- a/test/lib/03-publish-c2b-qos1-disconnect.py +++ b/test/lib/03-publish-c2b-qos1-disconnect.py @@ -1,4 +1,4 @@ -#!/usr/bin/python +#!/usr/bin/env python # Test whether a client sends a correct PUBLISH to a topic with QoS 1, then responds correctly to a disconnect. diff --git a/test/lib/03-publish-c2b-qos1-timeout.py b/test/lib/03-publish-c2b-qos1-timeout.py index a61c447..43541d4 100755 --- a/test/lib/03-publish-c2b-qos1-timeout.py +++ b/test/lib/03-publish-c2b-qos1-timeout.py @@ -1,4 +1,4 @@ -#!/usr/bin/python +#!/usr/bin/env python # Test whether a client sends a correct PUBLISH to a topic with QoS 1 and responds to a delay. diff --git a/test/lib/03-publish-c2b-qos2-disconnect.py b/test/lib/03-publish-c2b-qos2-disconnect.py index f21a290..42b06d0 100755 --- a/test/lib/03-publish-c2b-qos2-disconnect.py +++ b/test/lib/03-publish-c2b-qos2-disconnect.py @@ -1,4 +1,4 @@ -#!/usr/bin/python +#!/usr/bin/env python # Test whether a client sends a correct PUBLISH to a topic with QoS 2 and responds to a disconnect. diff --git a/test/lib/03-publish-c2b-qos2-timeout.py b/test/lib/03-publish-c2b-qos2-timeout.py index a4c7003..f8553c0 100755 --- a/test/lib/03-publish-c2b-qos2-timeout.py +++ b/test/lib/03-publish-c2b-qos2-timeout.py @@ -1,4 +1,4 @@ -#!/usr/bin/python +#!/usr/bin/env python # Test whether a client sends a correct PUBLISH to a topic with QoS 1 and responds to a delay. diff --git a/test/lib/03-publish-qos0-no-payload.py b/test/lib/03-publish-qos0-no-payload.py index 1324768..fd02caa 100755 --- a/test/lib/03-publish-qos0-no-payload.py +++ b/test/lib/03-publish-qos0-no-payload.py @@ -1,4 +1,4 @@ -#!/usr/bin/python +#!/usr/bin/env python # Test whether a client sends a correct PUBLISH to a topic with QoS 0 and no payload. diff --git a/test/lib/03-publish-qos0.py b/test/lib/03-publish-qos0.py index 17d8b53..987e29a 100755 --- a/test/lib/03-publish-qos0.py +++ b/test/lib/03-publish-qos0.py @@ -1,4 +1,4 @@ -#!/usr/bin/python +#!/usr/bin/env python # Test whether a client sends a correct PUBLISH to a topic with QoS 0. diff --git a/test/lib/04-retain-qos0.py b/test/lib/04-retain-qos0.py index 859b612..35dff0a 100755 --- a/test/lib/04-retain-qos0.py +++ b/test/lib/04-retain-qos0.py @@ -1,4 +1,4 @@ -#!/usr/bin/python +#!/usr/bin/env python # Test whether a client sends a correct retained PUBLISH to a topic with QoS 0. diff --git a/test/lib/08-ssl-bad-cacert.py b/test/lib/08-ssl-bad-cacert.py index 221e2ff..c74ba80 100755 --- a/test/lib/08-ssl-bad-cacert.py +++ b/test/lib/08-ssl-bad-cacert.py @@ -1,4 +1,4 @@ -#!/usr/bin/python +#!/usr/bin/env python import inspect import os diff --git a/test/lib/08-ssl-connect-cert-auth.py b/test/lib/08-ssl-connect-cert-auth.py index 60663ab..74b8ba0 100755 --- a/test/lib/08-ssl-connect-cert-auth.py +++ b/test/lib/08-ssl-connect-cert-auth.py @@ -1,4 +1,4 @@ -#!/usr/bin/python +#!/usr/bin/env python # Test whether a client produces a correct connect and subsequent disconnect when using SSL. # Client must provide a certificate. diff --git a/test/lib/08-ssl-connect-no-auth.py b/test/lib/08-ssl-connect-no-auth.py index 406f815..ddff6b0 100755 --- a/test/lib/08-ssl-connect-no-auth.py +++ b/test/lib/08-ssl-connect-no-auth.py @@ -1,4 +1,4 @@ -#!/usr/bin/python +#!/usr/bin/env python # Test whether a client produces a correct connect and subsequent disconnect when using SSL. diff --git a/test/lib/08-ssl-fake-cacert.py b/test/lib/08-ssl-fake-cacert.py index 819ab8b..70c5cf9 100755 --- a/test/lib/08-ssl-fake-cacert.py +++ b/test/lib/08-ssl-fake-cacert.py @@ -1,4 +1,4 @@ -#!/usr/bin/python +#!/usr/bin/env python import inspect import os diff --git a/test/lib/09-util-topic-matching.py b/test/lib/09-util-topic-matching.py index 050acfc..3221642 100755 --- a/test/lib/09-util-topic-matching.py +++ b/test/lib/09-util-topic-matching.py @@ -1,4 +1,4 @@ -#!/usr/bin/python +#!/usr/bin/env python import inspect import os diff --git a/test/lib/python/01-con-discon-success.test b/test/lib/python/01-con-discon-success.test index b6ccc1e..489fece 100755 --- a/test/lib/python/01-con-discon-success.test +++ b/test/lib/python/01-con-discon-success.test @@ -1,4 +1,4 @@ -#!/usr/bin/python +#!/usr/bin/env python import os import subprocess diff --git a/test/lib/python/01-keepalive-pingreq.test b/test/lib/python/01-keepalive-pingreq.test index bf9565d..8dd7512 100755 --- a/test/lib/python/01-keepalive-pingreq.test +++ b/test/lib/python/01-keepalive-pingreq.test @@ -1,4 +1,4 @@ -#!/usr/bin/python +#!/usr/bin/env python import os import subprocess diff --git a/test/lib/python/01-no-clean-session.test b/test/lib/python/01-no-clean-session.test index 06387bf..f66acfd 100755 --- a/test/lib/python/01-no-clean-session.test +++ b/test/lib/python/01-no-clean-session.test @@ -1,4 +1,4 @@ -#!/usr/bin/python +#!/usr/bin/env python import paho.mqtt.client as mqtt diff --git a/test/lib/python/01-unpwd-set.test b/test/lib/python/01-unpwd-set.test index cbbd992..9166102 100755 --- a/test/lib/python/01-unpwd-set.test +++ b/test/lib/python/01-unpwd-set.test @@ -1,4 +1,4 @@ -#!/usr/bin/python +#!/usr/bin/env python import paho.mqtt.client as mqtt diff --git a/test/lib/python/01-will-set.test b/test/lib/python/01-will-set.test index 8502e7c..8cb77d8 100755 --- a/test/lib/python/01-will-set.test +++ b/test/lib/python/01-will-set.test @@ -1,4 +1,4 @@ -#!/usr/bin/python +#!/usr/bin/env python import paho.mqtt.client as mqtt diff --git a/test/lib/python/01-will-unpwd-set.test b/test/lib/python/01-will-unpwd-set.test index 61b631e..aface84 100755 --- a/test/lib/python/01-will-unpwd-set.test +++ b/test/lib/python/01-will-unpwd-set.test @@ -1,4 +1,4 @@ -#!/usr/bin/python +#!/usr/bin/env python import paho.mqtt.client as mqtt diff --git a/test/lib/python/02-subscribe-qos0.test b/test/lib/python/02-subscribe-qos0.test index a49f110..b964f62 100755 --- a/test/lib/python/02-subscribe-qos0.test +++ b/test/lib/python/02-subscribe-qos0.test @@ -1,4 +1,4 @@ -#!/usr/bin/python +#!/usr/bin/env python import os import subprocess diff --git a/test/lib/python/02-subscribe-qos1.test b/test/lib/python/02-subscribe-qos1.test index 1060a1e..6fc247f 100755 --- a/test/lib/python/02-subscribe-qos1.test +++ b/test/lib/python/02-subscribe-qos1.test @@ -1,4 +1,4 @@ -#!/usr/bin/python +#!/usr/bin/env python import os import subprocess diff --git a/test/lib/python/02-subscribe-qos2.test b/test/lib/python/02-subscribe-qos2.test index f09c887..9d52faa 100755 --- a/test/lib/python/02-subscribe-qos2.test +++ b/test/lib/python/02-subscribe-qos2.test @@ -1,4 +1,4 @@ -#!/usr/bin/python +#!/usr/bin/env python import os import subprocess diff --git a/test/lib/python/02-unsubscribe.test b/test/lib/python/02-unsubscribe.test index 3e2c2c4..4a52779 100755 --- a/test/lib/python/02-unsubscribe.test +++ b/test/lib/python/02-unsubscribe.test @@ -1,4 +1,4 @@ -#!/usr/bin/python +#!/usr/bin/env python import os import subprocess diff --git a/test/lib/python/03-publish-b2c-qos1.test b/test/lib/python/03-publish-b2c-qos1.test index cf2b58a..ef6d100 100755 --- a/test/lib/python/03-publish-b2c-qos1.test +++ b/test/lib/python/03-publish-b2c-qos1.test @@ -1,4 +1,4 @@ -#!/usr/bin/python +#!/usr/bin/env python import os import subprocess diff --git a/test/lib/python/03-publish-b2c-qos2.test b/test/lib/python/03-publish-b2c-qos2.test index b88cc9c..4540b55 100755 --- a/test/lib/python/03-publish-b2c-qos2.test +++ b/test/lib/python/03-publish-b2c-qos2.test @@ -1,4 +1,4 @@ -#!/usr/bin/python +#!/usr/bin/env python import os import subprocess diff --git a/test/lib/python/03-publish-c2b-qos1-disconnect.test b/test/lib/python/03-publish-c2b-qos1-disconnect.test index 812aa1e..8fc4a1d 100755 --- a/test/lib/python/03-publish-c2b-qos1-disconnect.test +++ b/test/lib/python/03-publish-c2b-qos1-disconnect.test @@ -1,4 +1,4 @@ -#!/usr/bin/python +#!/usr/bin/env python import os import subprocess diff --git a/test/lib/python/03-publish-c2b-qos1-timeout.test b/test/lib/python/03-publish-c2b-qos1-timeout.test index c12957a..26a24ca 100755 --- a/test/lib/python/03-publish-c2b-qos1-timeout.test +++ b/test/lib/python/03-publish-c2b-qos1-timeout.test @@ -1,4 +1,4 @@ -#!/usr/bin/python +#!/usr/bin/env python import os import subprocess diff --git a/test/lib/python/03-publish-c2b-qos2-disconnect.test b/test/lib/python/03-publish-c2b-qos2-disconnect.test index ad6d2fd..d4c6f69 100755 --- a/test/lib/python/03-publish-c2b-qos2-disconnect.test +++ b/test/lib/python/03-publish-c2b-qos2-disconnect.test @@ -1,4 +1,4 @@ -#!/usr/bin/python +#!/usr/bin/env python import os import subprocess diff --git a/test/lib/python/03-publish-c2b-qos2-timeout.test b/test/lib/python/03-publish-c2b-qos2-timeout.test index e7a40e4..892204b 100755 --- a/test/lib/python/03-publish-c2b-qos2-timeout.test +++ b/test/lib/python/03-publish-c2b-qos2-timeout.test @@ -1,4 +1,4 @@ -#!/usr/bin/python +#!/usr/bin/env python import os import subprocess diff --git a/test/lib/python/03-publish-qos0-no-payload.test b/test/lib/python/03-publish-qos0-no-payload.test index 0cbf894..f247f40 100755 --- a/test/lib/python/03-publish-qos0-no-payload.test +++ b/test/lib/python/03-publish-qos0-no-payload.test @@ -1,4 +1,4 @@ -#!/usr/bin/python +#!/usr/bin/env python import os import subprocess diff --git a/test/lib/python/03-publish-qos0.test b/test/lib/python/03-publish-qos0.test index 88e6e5f..0cbb7da 100755 --- a/test/lib/python/03-publish-qos0.test +++ b/test/lib/python/03-publish-qos0.test @@ -1,4 +1,4 @@ -#!/usr/bin/python +#!/usr/bin/env python import os import subprocess diff --git a/test/lib/python/04-retain-qos0.test b/test/lib/python/04-retain-qos0.test index eb950b8..1564648 100755 --- a/test/lib/python/04-retain-qos0.test +++ b/test/lib/python/04-retain-qos0.test @@ -1,4 +1,4 @@ -#!/usr/bin/python +#!/usr/bin/env python import os import subprocess diff --git a/test/lib/python/08-ssl-bad-cacert.test b/test/lib/python/08-ssl-bad-cacert.test index 404030a..42da4fd 100755 --- a/test/lib/python/08-ssl-bad-cacert.test +++ b/test/lib/python/08-ssl-bad-cacert.test @@ -1,4 +1,4 @@ -#!/usr/bin/python +#!/usr/bin/env python import os import subprocess diff --git a/test/lib/python/08-ssl-connect-cert-auth.test b/test/lib/python/08-ssl-connect-cert-auth.test index f4b9b3f..a7b4835 100755 --- a/test/lib/python/08-ssl-connect-cert-auth.test +++ b/test/lib/python/08-ssl-connect-cert-auth.test @@ -1,4 +1,4 @@ -#!/usr/bin/python +#!/usr/bin/env python import os import subprocess diff --git a/test/lib/python/08-ssl-connect-no-auth.test b/test/lib/python/08-ssl-connect-no-auth.test index 4f04edd..1f30937 100755 --- a/test/lib/python/08-ssl-connect-no-auth.test +++ b/test/lib/python/08-ssl-connect-no-auth.test @@ -1,4 +1,4 @@ -#!/usr/bin/python +#!/usr/bin/env python import os import subprocess diff --git a/test/lib/python/08-ssl-fake-cacert.test b/test/lib/python/08-ssl-fake-cacert.test index 0448e3c..f876a10 100755 --- a/test/lib/python/08-ssl-fake-cacert.test +++ b/test/lib/python/08-ssl-fake-cacert.test @@ -1,4 +1,4 @@ -#!/usr/bin/python +#!/usr/bin/env python import os import subprocess diff --git a/test/lib/python/09-util-topic-matching.test b/test/lib/python/09-util-topic-matching.test index ef5c18c..4ffe39a 100755 --- a/test/lib/python/09-util-topic-matching.test +++ b/test/lib/python/09-util-topic-matching.test @@ -1,4 +1,4 @@ -#!/usr/bin/python +#!/usr/bin/env python import paho.mqtt.client as mqtt import sys diff --git a/test/lib/python3/01-con-discon-success.test b/test/lib/python3/01-con-discon-success.test index 188aa66..65eacb9 100755 --- a/test/lib/python3/01-con-discon-success.test +++ b/test/lib/python3/01-con-discon-success.test @@ -1,4 +1,4 @@ -#!/usr/bin/python3 +#!/usr/bin/env python3 import os import subprocess diff --git a/test/lib/python3/01-keepalive-pingreq.test b/test/lib/python3/01-keepalive-pingreq.test index 4148df7..cc3ec26 100755 --- a/test/lib/python3/01-keepalive-pingreq.test +++ b/test/lib/python3/01-keepalive-pingreq.test @@ -1,4 +1,4 @@ -#!/usr/bin/python3 +#!/usr/bin/env python3 import os import subprocess diff --git a/test/lib/python3/01-no-clean-session.test b/test/lib/python3/01-no-clean-session.test index d1c9a21..8f05024 100755 --- a/test/lib/python3/01-no-clean-session.test +++ b/test/lib/python3/01-no-clean-session.test @@ -1,4 +1,4 @@ -#!/usr/bin/python3 +#!/usr/bin/env python3 import paho.mqtt.client as mqtt diff --git a/test/lib/python3/01-unpwd-set.test b/test/lib/python3/01-unpwd-set.test index 2ae97c7..d74b034 100755 --- a/test/lib/python3/01-unpwd-set.test +++ b/test/lib/python3/01-unpwd-set.test @@ -1,4 +1,4 @@ -#!/usr/bin/python3 +#!/usr/bin/env python3 import paho.mqtt.client as mqtt diff --git a/test/lib/python3/01-will-set.test b/test/lib/python3/01-will-set.test index 6b0b76e..e1d4c43 100755 --- a/test/lib/python3/01-will-set.test +++ b/test/lib/python3/01-will-set.test @@ -1,4 +1,4 @@ -#!/usr/bin/python3 +#!/usr/bin/env python3 import paho.mqtt.client as mqtt diff --git a/test/lib/python3/01-will-unpwd-set.test b/test/lib/python3/01-will-unpwd-set.test index 370bb80..ad1199f 100755 --- a/test/lib/python3/01-will-unpwd-set.test +++ b/test/lib/python3/01-will-unpwd-set.test @@ -1,4 +1,4 @@ -#!/usr/bin/python3 +#!/usr/bin/env python3 import paho.mqtt.client as mqtt diff --git a/test/lib/python3/02-subscribe-qos0.test b/test/lib/python3/02-subscribe-qos0.test index b976978..77a2379 100755 --- a/test/lib/python3/02-subscribe-qos0.test +++ b/test/lib/python3/02-subscribe-qos0.test @@ -1,4 +1,4 @@ -#!/usr/bin/python3 +#!/usr/bin/env python3 import os import subprocess diff --git a/test/lib/python3/02-subscribe-qos1.test b/test/lib/python3/02-subscribe-qos1.test index 37c35b0..c8b1be5 100755 --- a/test/lib/python3/02-subscribe-qos1.test +++ b/test/lib/python3/02-subscribe-qos1.test @@ -1,4 +1,4 @@ -#!/usr/bin/python3 +#!/usr/bin/env python3 import os import subprocess diff --git a/test/lib/python3/02-subscribe-qos2.test b/test/lib/python3/02-subscribe-qos2.test index 4592d79..a10e520 100755 --- a/test/lib/python3/02-subscribe-qos2.test +++ b/test/lib/python3/02-subscribe-qos2.test @@ -1,4 +1,4 @@ -#!/usr/bin/python3 +#!/usr/bin/env python3 import os import subprocess diff --git a/test/lib/python3/02-unsubscribe.test b/test/lib/python3/02-unsubscribe.test index f4eb457..a3f20cb 100755 --- a/test/lib/python3/02-unsubscribe.test +++ b/test/lib/python3/02-unsubscribe.test @@ -1,4 +1,4 @@ -#!/usr/bin/python3 +#!/usr/bin/env python3 import os import subprocess diff --git a/test/lib/python3/03-publish-b2c-qos1.test b/test/lib/python3/03-publish-b2c-qos1.test index 09c7189..9481152 100755 --- a/test/lib/python3/03-publish-b2c-qos1.test +++ b/test/lib/python3/03-publish-b2c-qos1.test @@ -1,4 +1,4 @@ -#!/usr/bin/python3 +#!/usr/bin/env python3 import os import subprocess diff --git a/test/lib/python3/03-publish-b2c-qos2.test b/test/lib/python3/03-publish-b2c-qos2.test index a71e7c4..270e65d 100755 --- a/test/lib/python3/03-publish-b2c-qos2.test +++ b/test/lib/python3/03-publish-b2c-qos2.test @@ -1,4 +1,4 @@ -#!/usr/bin/python3 +#!/usr/bin/env python3 import os import subprocess diff --git a/test/lib/python3/03-publish-c2b-qos1-disconnect.test b/test/lib/python3/03-publish-c2b-qos1-disconnect.test index 812aa1e..8fc4a1d 100755 --- a/test/lib/python3/03-publish-c2b-qos1-disconnect.test +++ b/test/lib/python3/03-publish-c2b-qos1-disconnect.test @@ -1,4 +1,4 @@ -#!/usr/bin/python +#!/usr/bin/env python import os import subprocess diff --git a/test/lib/python3/03-publish-c2b-qos1-timeout.test b/test/lib/python3/03-publish-c2b-qos1-timeout.test index 9576f6d..948f589 100755 --- a/test/lib/python3/03-publish-c2b-qos1-timeout.test +++ b/test/lib/python3/03-publish-c2b-qos1-timeout.test @@ -1,4 +1,4 @@ -#!/usr/bin/python3 +#!/usr/bin/env python3 import os import subprocess diff --git a/test/lib/python3/03-publish-c2b-qos2-disconnect.test b/test/lib/python3/03-publish-c2b-qos2-disconnect.test index 09bc1e3..cf5bcbe 100755 --- a/test/lib/python3/03-publish-c2b-qos2-disconnect.test +++ b/test/lib/python3/03-publish-c2b-qos2-disconnect.test @@ -1,4 +1,4 @@ -#!/usr/bin/python3 +#!/usr/bin/env python3 import os import subprocess diff --git a/test/lib/python3/03-publish-c2b-qos2-timeout.test b/test/lib/python3/03-publish-c2b-qos2-timeout.test index dc601dc..249a7c5 100755 --- a/test/lib/python3/03-publish-c2b-qos2-timeout.test +++ b/test/lib/python3/03-publish-c2b-qos2-timeout.test @@ -1,4 +1,4 @@ -#!/usr/bin/python3 +#!/usr/bin/env python3 import os import subprocess diff --git a/test/lib/python3/03-publish-qos0-no-payload.test b/test/lib/python3/03-publish-qos0-no-payload.test index 2440a5e..d7e0722 100755 --- a/test/lib/python3/03-publish-qos0-no-payload.test +++ b/test/lib/python3/03-publish-qos0-no-payload.test @@ -1,4 +1,4 @@ -#!/usr/bin/python3 +#!/usr/bin/env python3 import os import subprocess diff --git a/test/lib/python3/03-publish-qos0.test b/test/lib/python3/03-publish-qos0.test index e911da3..3a5b16c 100755 --- a/test/lib/python3/03-publish-qos0.test +++ b/test/lib/python3/03-publish-qos0.test @@ -1,4 +1,4 @@ -#!/usr/bin/python3 +#!/usr/bin/env python3 import os import subprocess diff --git a/test/lib/python3/04-retain-qos0.test b/test/lib/python3/04-retain-qos0.test index 5a74ddc..0e15eb4 100755 --- a/test/lib/python3/04-retain-qos0.test +++ b/test/lib/python3/04-retain-qos0.test @@ -1,4 +1,4 @@ -#!/usr/bin/python3 +#!/usr/bin/env python3 import os import subprocess diff --git a/test/lib/python3/08-ssl-bad-cacert.test b/test/lib/python3/08-ssl-bad-cacert.test index a3cdc13..62c19a2 100755 --- a/test/lib/python3/08-ssl-bad-cacert.test +++ b/test/lib/python3/08-ssl-bad-cacert.test @@ -1,4 +1,4 @@ -#!/usr/bin/python3 +#!/usr/bin/env python3 import os import subprocess diff --git a/test/lib/python3/08-ssl-connect-cert-auth.test b/test/lib/python3/08-ssl-connect-cert-auth.test index 84ccf02..1f1a336 100755 --- a/test/lib/python3/08-ssl-connect-cert-auth.test +++ b/test/lib/python3/08-ssl-connect-cert-auth.test @@ -1,4 +1,4 @@ -#!/usr/bin/python3 +#!/usr/bin/env python3 import os import subprocess diff --git a/test/lib/python3/08-ssl-connect-no-auth.test b/test/lib/python3/08-ssl-connect-no-auth.test index e6447d9..e627f00 100755 --- a/test/lib/python3/08-ssl-connect-no-auth.test +++ b/test/lib/python3/08-ssl-connect-no-auth.test @@ -1,4 +1,4 @@ -#!/usr/bin/python3 +#!/usr/bin/env python3 import os import subprocess diff --git a/test/lib/python3/08-ssl-fake-cacert.test b/test/lib/python3/08-ssl-fake-cacert.test index fbccc06..dc55a0f 100755 --- a/test/lib/python3/08-ssl-fake-cacert.test +++ b/test/lib/python3/08-ssl-fake-cacert.test @@ -1,4 +1,4 @@ -#!/usr/bin/python3 +#!/usr/bin/env python3 import os import subprocess diff --git a/test/lib/python3/09-util-topic-matching.test b/test/lib/python3/09-util-topic-matching.test index 2f4424a..76c9350 100755 --- a/test/lib/python3/09-util-topic-matching.test +++ b/test/lib/python3/09-util-topic-matching.test @@ -1,4 +1,4 @@ -#!/usr/bin/python3 +#!/usr/bin/env python3 import paho.mqtt.client as mqtt import sys