9677755b4f
- Fix make test: was pointing to non-existent api/tests/, now runs unit tests correctly with --ignore=e2e --ignore=integration - Remove dead phase test targets (test-phase1..4, test-all-phases) that all referenced cd api && pytest tests/ (non-existent path) - Add .test_admin_pass file: reset_admin_password.py now writes a persistent test password file alongside .admin_initial_password; the API never deletes it (unlike .admin_initial_password which is consumed on first startup) - Update both integration/conftest.py and e2e/helpers/admin_password.py to read .test_admin_pass before .admin_initial_password — so tests work after make restart without needing PIC_ADMIN_PASS env var - Add AI collaboration rules to CLAUDE.md (auto-loaded every session) Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
19 lines
607 B
Python
19 lines
607 B
Python
import os
|
|
|
|
|
|
_DATA_DIR = os.path.normpath(os.path.join(os.path.dirname(__file__), '..', '..', '..', 'data', 'api'))
|
|
|
|
|
|
def resolve_admin_password() -> str:
|
|
p = os.environ.get('PIC_ADMIN_PASS', '').strip()
|
|
if p:
|
|
return p
|
|
for fname in ('.test_admin_pass', '.admin_initial_password'):
|
|
candidate = os.path.join(_DATA_DIR, fname)
|
|
if os.path.exists(candidate):
|
|
return open(candidate).read().strip()
|
|
raise RuntimeError(
|
|
"Admin password unknown. Set PIC_ADMIN_PASS env var or run: "
|
|
"make reset-test-admin-pass PIC_TEST_ADMIN_PASS=<password>"
|
|
)
|