From 9e675bf43c08e1acabf536e0631f2916a80a6de3 Mon Sep 17 00:00:00 2001 From: Sean Whalen <44679+seanthegeek@users.noreply.github.com> Date: Thu, 21 May 2026 17:15:29 -0400 Subject: [PATCH] Update build command to use pytest with coverage reporting --- build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sh b/build.sh index 65c078a..4bd9d8f 100755 --- a/build.sh +++ b/build.sh @@ -22,6 +22,6 @@ python3 sortlists.py echo "Checking for invalid UTF-8 bytes in base_reverse_dns_map.csv" python3 find_bad_utf8.py base_reverse_dns_map.csv cd ../../.. -python3 tests.py +python3 -m pytest --cov --cov-report=xml --junitxml=junit.xml -o junit_family=legacy tests/ rm -rf dist/ build/ hatch build