CI: add sequential tag for NoteEquipTitleTest; woodpecker runs it w.o --parallel
All checks were successful
ci/woodpecker/push/pyswiss Pipeline was successful
ci/woodpecker/push/main Pipeline was successful

Parallel geckodriver startup race causes a spurious permissions error when
NoteEquipTitleTest is the first FT dispatched. @tag("sequential") moves it
into test-two-browser-FTs (sequential stage) as a reusable escape hatch.

Code architected by Disco DeDisco <discodedisco@outlook.com>
Git commit message Co-Authored-By:
Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Disco DeDisco
2026-04-23 03:12:24 -04:00
parent 2088fedeee
commit 5655342d9f
2 changed files with 3 additions and 0 deletions

View File

@@ -42,6 +42,7 @@ steps:
- cd ./src
- python manage.py collectstatic --noinput
- python manage.py test functional_tests --tag=two-browser
- python manage.py test functional_tests --tag=sequential
- python manage.py test functional_tests --tag=channels
when:
- event: push

View File

@@ -16,6 +16,7 @@ T2 (Dashboard full flow) is split across three focused tests:
"""
import json as _json
from django.test import tag
from django.utils import timezone
from selenium.webdriver.common.by import By
@@ -404,6 +405,7 @@ class StargazerNoteFromSkyPageTest(FunctionalTest):
# Title equip — DON/DOFF buttons on the note item
# ──────────────────────────────────────────────────────────────────────────────
@tag("sequential")
class NoteEquipTitleTest(FunctionalTest):
"""DON button equips the note title as the sitewide greeting; DOFF restores it."""