Skip to content
Open
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
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -118,3 +118,8 @@ venv.bak/
.mypy_cache/
.idea/
.vscode/

pipeline.yaml
docs/
test-results
pytest-output.log
14 changes: 5 additions & 9 deletions tests/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,10 @@
from .test_entry import TestEntry
from .test_query import TestQuery
from .test_stack import TestStack
from .test_global_fields import TestGlobalFieldInit
from .test_early_fetch import TestGlobalFieldFetch
from .test_early_find import TestGlobalFieldFind
# Removed old imports - pytest auto-discovers tests
# from .test_global_fields import TestGlobalFieldInit # Old class, doesn't exist
# from .test_early_fetch import TestGlobalFieldFetch # Old class, doesn't exist
# from .test_early_find import TestGlobalFieldFind # Old class, doesn't exist
from .test_live_preview import TestLivePreviewConfig
from .test_taxonomies import TestTaxonomyAPI

Expand All @@ -25,18 +26,13 @@ def all_tests():
test_module_entry = TestLoader().loadTestsFromTestCase(TestEntry)
test_module_query = TestLoader().loadTestsFromTestCase(TestQuery)
test_module_live_preview = TestLoader().loadTestsFromTestCase(TestLivePreviewConfig)
test_module_globalFields = TestLoader().loadTestsFromName(TestGlobalFieldInit)
test_module_globalFields_fetch = TestLoader().loadTestsFromName(TestGlobalFieldFetch)
test_module_globalFields_find = TestLoader().loadTestsFromName(TestGlobalFieldFind)
# Removed old global field test references - pytest auto-discovers new test classes
test_module_taxonomies = TestLoader().loadTestsFromTestCase(TestTaxonomyAPI)
TestSuite([
test_module_stack,
test_module_asset,
test_module_entry,
test_module_query,
test_module_live_preview,
test_module_globalFields,
test_module_globalFields_fetch,
test_module_globalFields_find,
test_module_taxonomies
])
Loading
Loading