Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 1 addition & 7 deletions templates/github/.github/workflows/scripts/script.sh.j2
Original file line number Diff line number Diff line change
Expand Up @@ -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 %}
Expand Down
Loading