From 763c896b63ec349ad5cadf70f5a57725e4b30b2c Mon Sep 17 00:00:00 2001 From: Xe Iaso Date: Sat, 16 May 2026 02:33:22 -0400 Subject: [PATCH] test(default-config): create self-contained venv Signed-off-by: Xe Iaso --- test/default-config-macro/.gitignore | 1 + test/default-config-macro/test.sh | 7 ++++++- 2 files changed, 7 insertions(+), 1 deletion(-) create mode 100644 test/default-config-macro/.gitignore diff --git a/test/default-config-macro/.gitignore b/test/default-config-macro/.gitignore new file mode 100644 index 00000000..2eea525d --- /dev/null +++ b/test/default-config-macro/.gitignore @@ -0,0 +1 @@ +.env \ No newline at end of file diff --git a/test/default-config-macro/test.sh b/test/default-config-macro/test.sh index 6e0b7ab2..ede71ebd 100755 --- a/test/default-config-macro/test.sh +++ b/test/default-config-macro/test.sh @@ -3,5 +3,10 @@ set -euo pipefail cd "$(dirname "$0")" + +python3 -m venv .env +source .env/bin/activate +pip install pyyaml + python3 -c 'import yaml' -python3 ./compare_bots.py \ No newline at end of file +python3 ./compare_bots.py