From e170694ad6c023aadeaacd79ffad73e15cbf1711 Mon Sep 17 00:00:00 2001 From: Gerrod Ubben Date: Wed, 25 Feb 2026 13:44:02 -0500 Subject: [PATCH] Fix cli tests failing to run --- templates/github/.github/workflows/scripts/script.sh.j2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/github/.github/workflows/scripts/script.sh.j2 b/templates/github/.github/workflows/scripts/script.sh.j2 index e7a927b0..fc4e5234 100755 --- a/templates/github/.github/workflows/scripts/script.sh.j2 +++ b/templates/github/.github/workflows/scripts/script.sh.j2 @@ -159,7 +159,7 @@ export PULP_FIXTURES_URL="http://pulp-fixtures:8080" {%- endif %} pushd ../{{ cli_package }} pip install -r test_requirements.txt -pytest -v -m "{{ plugins | map(attribute='name') | join(' or ') | snake }}" +pytest -v tests -m "{{ plugins | map(attribute='name') | join(' or ') | snake }}" popd {%- endif %} {%- endif %}