diff --git a/templates/github/.github/workflows/scripts/script.sh.j2 b/templates/github/.github/workflows/scripts/script.sh.j2 index 02a4ecc9..4775576d 100755 --- a/templates/github/.github/workflows/scripts/script.sh.j2 +++ b/templates/github/.github/workflows/scripts/script.sh.j2 @@ -161,13 +161,7 @@ export PULP_FIXTURES_URL="http://pulp-fixtures:8080" export PULP_API_ROOT="$(EDITOR=cat pulp config edit 2>/dev/null | awk -F'"' '/api_root/{print $2; exit}')" {%- set cli_plugin_markers = plugins | map(attribute='name') | join(' or ') | snake %} pushd ../{{ cli_package }} -if [[ -f "test_requirements.txt" ]] -then - uv pip install -r test_requirements.txt - pytest -v tests -m "{{ cli_plugin_markers }}" -else - PULP_CA_BUNDLE="/usr/local/share/ca-certificates/pulp_webserver.crt" make livetest PYTEST_MARK="live and ({{ cli_plugin_markers }})" -fi +PULP_CA_BUNDLE="/usr/local/share/ca-certificates/pulp_webserver.crt" make paralleltest PYTEST_MARK="live and ({{ cli_plugin_markers }})" popd {%- endif %} {%- endif %}