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
124 changes: 21 additions & 103 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -55,15 +55,15 @@ filelock = ">=3.20.1"
idna = ">=3.15,<4"

[tool.poetry.group.test.dependencies]
pytest = "^8.4.0"
pytest = ">=9.0.3"
docstring-parser = ">=0.17.0"
coverage = "^7.9.2"
pytest-cov = "^6.0.0"
pytest-xdist = "^3.7.0"
pytest-socket = "^0.7"
pytest-asyncio = "^1.0.0"
pytest-asyncio = "^1.4.0"
requests-mock = "^1.11.0"
galileo-core = { extras = ["testing"], version = "^4.4.0" }
respx = "^0.22.0"

pytest-env = "^1.1.5"
pytest-timeout = "^2.3"
Expand Down
3 changes: 2 additions & 1 deletion tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,8 @@ def shutdown(self) -> None:
self.shutdown_calls += 1


# Note: The mock_request fixture is automatically provided by galileo_core[testing] extras
# Note: The mock_request fixture is provided by galileo_core's pytest11 plugin
# (galileo_core.testing.request_mocker); respx is a direct test dependency.


@pytest.fixture
Expand Down
Loading