File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2525echo " # Pulp config:"
2626tail -v -n +1 .ci/ansible/settings/settings.*
2727
28+ echo
29+ echo " # Pulp CLI config"
30+ tail -v -n +1 " ../pulp-cli/tests/cli.toml"
31+
2832echo
2933echo " # Containerfile:"
3034tail -v -n +1 .ci/ansible/Containerfile
Original file line number Diff line number Diff line change @@ -170,8 +170,13 @@ export PULP_FIXTURES_URL="http://pulp-fixtures:8080"
170170# some pulp-cli tests use the api root envvar
171171export PULP_API_ROOT=" $( EDITOR=cat pulp config edit 2> /dev/null | awk -F' "' ' /api_root/{print $2; exit}' ) "
172172pushd ../pulp-cli
173- pip install -r test_requirements.txt
174- pytest -v tests -m " pulpcore or pulp_file or pulp_certguard"
173+ if [[ -f " test_requirements.txt" ]]
174+ then
175+ pip install -r test_requirements.txt
176+ pytest -v tests -m " pulpcore or pulp_file or pulp_certguard"
177+ else
178+ PULP_CA_BUNDLE=" /usr/local/share/ca-certificates/pulp_webserver.crt" make livetest
179+ fi
175180popd
176181
177182if [ -f " $POST_SCRIPT " ]; then
Original file line number Diff line number Diff line change 4242 with :
4343 python-version : " 3.11"
4444
45+ - name : " Install uv"
46+ uses : " astral-sh/setup-uv@v7"
47+ with :
48+ enable-cache : true
49+
4550 - name : " Download plugin package"
4651 uses : " actions/download-artifact@v8"
4752 with :
You can’t perform that action at this time.
0 commit comments