Skip to content

Conversation

@xzrderek
Copy link
Contributor

@xzrderek xzrderek commented Dec 29, 2025

Note

Testing changes

  • Add module-level pytest.skip(...) in tests/chinook/langgraph/test_langgraph_chinook.py to skip langgraph integration tests that require external services/credentials.

Written by Cursor Bugbot for commit d28c249. This will update automatically on new commits. Configure here.

pytest.skip(
"Skipping Chinook langgraph integration tests (requires external services/credentials).",
allow_module_level=True,
)
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Unconditional skip disables tests even when credentials available

The pytest.skip() call unconditionally skips all tests at the module level, making the existing @pytest.mark.skipif decorator on test_langgraph_simple_query (which properly checks for FIREWORKS_API_KEY) completely ineffective. Tests will never run even when credentials are available and properly configured. This appears to be temporary code that was accidentally committed, as the proper conditional skip mechanism already exists in the test decorator.

Fix in Cursor Fix in Web

@xzrderek xzrderek merged commit ac376b7 into main Dec 29, 2025
17 checks passed
@xzrderek xzrderek deleted the derekx/chinook-remove branch December 29, 2025 20:14
@xzrderek xzrderek restored the derekx/chinook-remove branch December 31, 2025 19:14
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants