mirror of
https://github.com/mwisnowski/mtg_python_deckbuilder.git
synced 2025-12-17 08:00:13 +01:00
feat(web): Multi-Copy modal earlier; Multi-Copy stage before lands; bump version to 2.1.1; update CHANGELOG\n\n- Modal triggers after commander selection (Step 2)\n- Multi-Copy applied first in Step 5, lands next\n- Keep mc_summary/clamp/adjustments wiring intact\n- Tests green
This commit is contained in:
parent
be672ac5d2
commit
341a216ed3
20 changed files with 1271 additions and 21 deletions
11
code/tests/conftest.py
Normal file
11
code/tests/conftest.py
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
"""Pytest configuration and sys.path adjustments for local runs."""
|
||||
|
||||
# Ensure package imports resolve when running tests directly
|
||||
import os
|
||||
import sys
|
||||
ROOT = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
|
||||
CODE_DIR = os.path.join(ROOT, 'code')
|
||||
# Add the repo root and the 'code' package directory to sys.path if missing
|
||||
for p in (ROOT, CODE_DIR):
|
||||
if p not in sys.path:
|
||||
sys.path.insert(0, p)
|
||||
Loading…
Add table
Add a link
Reference in a new issue