From 089ef879a9d17e224c4269bbcc5ea88a74291c54 Mon Sep 17 00:00:00 2001 From: Alex Pyrgiotis Date: Wed, 12 Mar 2025 19:24:12 +0200 Subject: [PATCH] Fix small bugs in the Makefile for large tests --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index a7ebded..fe88150 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ LARGE_TEST_REPO_DIR:=tests/test_docs_large -GIT_DESC=$$(git describe) +GIT_DESC=$$(git describe --always) JUNIT_FLAGS := --capture=sys -o junit_logging=all MYPY_ARGS := --ignore-missing-imports \ --disallow-incomplete-defs \ @@ -56,7 +56,7 @@ test-large: test-large-init ## Run large test set $(JUNIT_FLAGS) \ -v \ tests/test_large_set.py::TestLargeSet - python $(TEST_LARGE_RESULTS)/report.py $(TEST_LARGE_RESULTS) + python $(LARGE_TEST_REPO_DIR)/report.py $(TEST_LARGE_RESULTS) Dockerfile: Dockerfile.env Dockerfile.in poetry run jinja2 Dockerfile.in Dockerfile.env > Dockerfile