Compare commits

..

No commits in common. "5b954a7a532aa818c0d54933110f8eaba9af9ca8" and "cf9a02ae38e8ea6ad13b0cd6f73cf718049443b9" have entirely different histories.

3 changed files with 0 additions and 5 deletions

View File

@ -39,8 +39,6 @@ jobs:
browser-journey: browser-journey:
runs-on: ubuntu-latest runs-on: ubuntu-latest
needs: build-release needs: build-release
env:
STACKCHAIN_RUN_RELEASE_E2E: "1"
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- uses: actions/setup-python@v5 - uses: actions/setup-python@v5

View File

@ -15,8 +15,6 @@ from pathlib import Path
import pytest import pytest
if os.getenv("STACKCHAIN_RUN_RELEASE_E2E") != "1":
pytest.skip("release artifact browser journey runs only in its gated CI job", allow_module_level=True)
pytest.importorskip("playwright.sync_api") pytest.importorskip("playwright.sync_api")
from playwright.sync_api import Page, expect, sync_playwright from playwright.sync_api import Page, expect, sync_playwright

View File

@ -37,6 +37,5 @@ def test_release_promotion_waits_for_artifact_mobile_offline_journey():
assert "actions/download-artifact@v3" in browser assert "actions/download-artifact@v3" in browser
assert "pip install -r requirements-e2e.txt" in browser assert "pip install -r requirements-e2e.txt" in browser
assert "python3 -m playwright install --with-deps chromium" in browser assert "python3 -m playwright install --with-deps chromium" in browser
assert 'STACKCHAIN_RUN_RELEASE_E2E: "1"' in browser
assert "python3 -m pytest tests/e2e/test_mobile_offline_issue_release.py -q" in browser assert "python3 -m pytest tests/e2e/test_mobile_offline_issue_release.py -q" in browser
assert "needs: [lint, build-release, browser-journey]" in release assert "needs: [lint, build-release, browser-journey]" in release