From c92131b319b9c2941e4b74a90bc220ae4f4d4e44 Mon Sep 17 00:00:00 2001 From: Rob Crittenden Date: Mon, 1 Jul 2024 11:40:27 -0400 Subject: [PATCH] Fix unit tests to execute successfully The unit tests were not started in the expected directory and basically wiping the source so there was nothing to run. Signed-off-by: Rob Crittenden --- tests/tests.yml | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/tests/tests.yml b/tests/tests.yml index 105bef4..9b8b8dc 100644 --- a/tests/tests.yml +++ b/tests/tests.yml @@ -10,11 +10,8 @@ - python3-ply tests: - unittests: - dir: "source/python3" + dir: ./source/test run: >- - rm -rf ply* && - pushd test && ./cleanup.sh && python3 testlex.py && - python3 testyacc.py && - popd + python3 testyacc.py