From 86bccff9ce28095d7479d97c950413b0fb9569d9 Mon Sep 17 00:00:00 2001 From: Peter Buchegger Date: Sun, 6 Nov 2022 21:12:07 +0100 Subject: [PATCH] install missing stuff via sudo --- HIL/Makefile | 2 +- Makefile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/HIL/Makefile b/HIL/Makefile index 86cf080..17e8da6 100644 --- a/HIL/Makefile +++ b/HIL/Makefile @@ -3,7 +3,7 @@ default: install test install: - pip3 install -r requirements.txt + sudo -H pip3 install -r requirements.txt test: ESP_PORT=/dev/ttyUSB0 ESP_CONFIG_PATH=testconfig ESP_CONFIG_FILE=testconfig.json pytest tests -v --log-cli-level=INFO diff --git a/Makefile b/Makefile index 3c3581d..7b14621 100644 --- a/Makefile +++ b/Makefile @@ -3,7 +3,7 @@ default: install test install: - pip3 install -r HIL/requirements.txt + sudo -H pip3 install -r HIL/requirements.txt test: ESP_PORT=/dev/ttyUSB0 ESP_CONFIG_PATH=data ESP_CONFIG_FILE=is-cfg.json PYTHONPATH=. pytest HIL_tests -v --log-cli-level=INFO