Skip to content
Closed
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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ dist/
# Runtime / generated data
# ----------------------------
var/
tmp/pytest-temp/

# ----------------------------
# Logs
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,9 @@ testpaths = ["faststack/tests"]
python_files = ["test_*.py"]

# Use importlib mode to avoid test import-path resolution issues
addopts = "--import-mode=importlib -p no:cacheprovider -p no:doctest --basetemp=./var/pytest-temp"
addopts = "--import-mode=importlib -p no:cacheprovider -p no:doctest --basetemp=./tmp/pytest-temp"
Comment thread
coderabbitai[bot] marked this conversation as resolved.
Comment thread
Dj-Shortcut marked this conversation as resolved.

norecursedirs = ["var", ".venv", "cache", "faststack.egg-info", "__pycache__"]
norecursedirs = ["var", "tmp", ".venv", "cache", "faststack.egg-info", "__pycache__"]
pythonpath = ["."]


Expand Down