Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ jobs:
VERSION="${GITHUB_REF_NAME#v}"
uv run python scripts/smoke_published_install.py \
--version "$VERSION" \
--attempts 12 \
--attempts 36 \
--delay-seconds 10

create-github-release:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/published-install-smoke.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
attempts:
description: 'Retry attempts for registry propagation'
required: false
default: '6'
default: '18'
type: string
delay_seconds:
description: 'Delay between retry attempts'
Expand Down
2 changes: 2 additions & 0 deletions tests/test_published_install_smoke.py
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,7 @@ def test_published_install_workflow_runs_script_after_publish() -> None:
assert "needs:" in workflow
assert "publish-pypi" in workflow
assert "publish-npm" in workflow
assert "--attempts 36" in workflow


def test_standalone_published_install_workflow_is_manual() -> None:
Expand All @@ -124,6 +125,7 @@ def test_standalone_published_install_workflow_is_manual() -> None:
assert "workflow_dispatch:" in workflow
assert "version:" in workflow
assert "scripts/smoke_published_install.py" in workflow
assert "default: '18'" in workflow
assert "python -m pip install pipx" in workflow
assert "from pipx.main import cli; raise SystemExit(cli())" in workflow

Expand Down