From b17831b99506c21c9d88b6c818120ba0cd91bed1 Mon Sep 17 00:00:00 2001 From: Ryan Summers Date: Wed, 7 Apr 2021 15:07:17 +0200 Subject: [PATCH] Updating HITL script to directly call python binaries --- hitl/run.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/hitl/run.sh b/hitl/run.sh index a01a472..b707192 100755 --- a/hitl/run.sh +++ b/hitl/run.sh @@ -12,8 +12,8 @@ set -eux # Set up python for testing python3 -m venv --system-site-packages py -. py/bin/activate -python3 -m pip install -r requirements.txt + +py/bin/pip install -r requirements.txt # Test pinging Stabilizer. This exercises that: # * DHCP is functional and an IP has been acquired @@ -22,4 +22,4 @@ python3 -m pip install -r requirements.txt ping -c 5 -w 20 stabilizer-hitl # Test the MQTT interface. -python3 miniconf.py dt/sinara/stabilizer afe/0 '"G2"' +py/bin/python3 miniconf.py dt/sinara/stabilizer afe/0 '"G2"'