drupal-scout 3.0.1__tar.gz → 3.0.2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {drupal_scout-3.0.1/drupal_scout.egg-info → drupal_scout-3.0.2}/PKG-INFO +2 -1
- drupal_scout-3.0.2/drupal_scout/tests/conftest.py +20 -0
- {drupal_scout-3.0.1 → drupal_scout-3.0.2/drupal_scout.egg-info}/PKG-INFO +2 -1
- {drupal_scout-3.0.1 → drupal_scout-3.0.2}/drupal_scout.egg-info/SOURCES.txt +1 -0
- {drupal_scout-3.0.1 → drupal_scout-3.0.2}/drupal_scout.egg-info/requires.txt +1 -0
- {drupal_scout-3.0.1 → drupal_scout-3.0.2}/pyproject.toml +2 -1
- {drupal_scout-3.0.1 → drupal_scout-3.0.2}/LICENSE.txt +0 -0
- {drupal_scout-3.0.1 → drupal_scout-3.0.2}/README.md +0 -0
- {drupal_scout-3.0.1 → drupal_scout-3.0.2}/bin/drupal-scout +0 -0
- {drupal_scout-3.0.1 → drupal_scout-3.0.2}/drupal_scout/__init__.py +0 -0
- {drupal_scout-3.0.1 → drupal_scout-3.0.2}/drupal_scout/application.py +0 -0
- {drupal_scout-3.0.1 → drupal_scout-3.0.2}/drupal_scout/exceptions.py +0 -0
- {drupal_scout-3.0.1 → drupal_scout-3.0.2}/drupal_scout/formatters/__init__.py +0 -0
- {drupal_scout-3.0.1 → drupal_scout-3.0.2}/drupal_scout/formatters/formatter.py +0 -0
- {drupal_scout-3.0.1 → drupal_scout-3.0.2}/drupal_scout/formatters/formatterfactory.py +0 -0
- {drupal_scout-3.0.1 → drupal_scout-3.0.2}/drupal_scout/formatters/jsonformatter.py +0 -0
- {drupal_scout-3.0.1 → drupal_scout-3.0.2}/drupal_scout/formatters/suggestformatter.py +0 -0
- {drupal_scout-3.0.1 → drupal_scout-3.0.2}/drupal_scout/formatters/tableformatter.py +0 -0
- {drupal_scout-3.0.1 → drupal_scout-3.0.2}/drupal_scout/mcp_server.py +0 -0
- {drupal_scout-3.0.1 → drupal_scout-3.0.2}/drupal_scout/module.py +0 -0
- {drupal_scout-3.0.1 → drupal_scout-3.0.2}/drupal_scout/output.py +0 -0
- {drupal_scout-3.0.1 → drupal_scout-3.0.2}/drupal_scout/tests/__init__.py +0 -0
- {drupal_scout-3.0.1 → drupal_scout-3.0.2}/drupal_scout/tests/test_application.py +0 -0
- {drupal_scout-3.0.1 → drupal_scout-3.0.2}/drupal_scout/tests/test_exceptions.py +0 -0
- {drupal_scout-3.0.1 → drupal_scout-3.0.2}/drupal_scout/tests/test_formatterfactory.py +0 -0
- {drupal_scout-3.0.1 → drupal_scout-3.0.2}/drupal_scout/tests/test_jsonformatter.py +0 -0
- {drupal_scout-3.0.1 → drupal_scout-3.0.2}/drupal_scout/tests/test_mcp_server.py +0 -0
- {drupal_scout-3.0.1 → drupal_scout-3.0.2}/drupal_scout/tests/test_suggestformatter.py +0 -0
- {drupal_scout-3.0.1 → drupal_scout-3.0.2}/drupal_scout/tests/test_tableformatter.py +0 -0
- {drupal_scout-3.0.1 → drupal_scout-3.0.2}/drupal_scout/tests/test_worker.py +0 -0
- {drupal_scout-3.0.1 → drupal_scout-3.0.2}/drupal_scout/tests/test_workers_manager.py +0 -0
- {drupal_scout-3.0.1 → drupal_scout-3.0.2}/drupal_scout/worker.py +0 -0
- {drupal_scout-3.0.1 → drupal_scout-3.0.2}/drupal_scout/workers_manager.py +0 -0
- {drupal_scout-3.0.1 → drupal_scout-3.0.2}/drupal_scout.egg-info/dependency_links.txt +0 -0
- {drupal_scout-3.0.1 → drupal_scout-3.0.2}/drupal_scout.egg-info/entry_points.txt +0 -0
- {drupal_scout-3.0.1 → drupal_scout-3.0.2}/drupal_scout.egg-info/top_level.txt +0 -0
- {drupal_scout-3.0.1 → drupal_scout-3.0.2}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: drupal-scout
|
|
3
|
-
Version: 3.0.
|
|
3
|
+
Version: 3.0.2
|
|
4
4
|
Summary: Scout out for transitive versions of Drupal modules for the upgrade of the core.
|
|
5
5
|
Author-email: "Andrew [R-Tech] Tsyhaniuk" <in0mad91@gmail.com>
|
|
6
6
|
License: MIT License
|
|
@@ -47,6 +47,7 @@ Requires-Dist: packaging
|
|
|
47
47
|
Requires-Dist: fastmcp
|
|
48
48
|
Requires-Dist: rich>=15.0.0
|
|
49
49
|
Provides-Extra: dev
|
|
50
|
+
Requires-Dist: pytest; extra == "dev"
|
|
50
51
|
Requires-Dist: nose; extra == "dev"
|
|
51
52
|
Requires-Dist: coverage; extra == "dev"
|
|
52
53
|
Requires-Dist: pipdeptree; extra == "dev"
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import pytest
|
|
2
|
+
from unittest.mock import Mock
|
|
3
|
+
from aiohttp.client_reqrep import ClientResponse
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
@pytest.fixture(autouse=True, scope="session")
|
|
7
|
+
def _patch_aiohttp_clientresponse_init_stream_writer():
|
|
8
|
+
"""Ensure tests remain compatible with aiohttp >= 3.14 when stream_writer is required."""
|
|
9
|
+
|
|
10
|
+
original_init = ClientResponse.__init__
|
|
11
|
+
|
|
12
|
+
def patched_init(self, *args, **kwargs):
|
|
13
|
+
kwargs.setdefault("stream_writer", Mock())
|
|
14
|
+
return original_init(self, *args, **kwargs)
|
|
15
|
+
|
|
16
|
+
ClientResponse.__init__ = patched_init # type: ignore[method-assign]
|
|
17
|
+
try:
|
|
18
|
+
yield
|
|
19
|
+
finally:
|
|
20
|
+
ClientResponse.__init__ = original_init # type: ignore[method-assign]
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: drupal-scout
|
|
3
|
-
Version: 3.0.
|
|
3
|
+
Version: 3.0.2
|
|
4
4
|
Summary: Scout out for transitive versions of Drupal modules for the upgrade of the core.
|
|
5
5
|
Author-email: "Andrew [R-Tech] Tsyhaniuk" <in0mad91@gmail.com>
|
|
6
6
|
License: MIT License
|
|
@@ -47,6 +47,7 @@ Requires-Dist: packaging
|
|
|
47
47
|
Requires-Dist: fastmcp
|
|
48
48
|
Requires-Dist: rich>=15.0.0
|
|
49
49
|
Provides-Extra: dev
|
|
50
|
+
Requires-Dist: pytest; extra == "dev"
|
|
50
51
|
Requires-Dist: nose; extra == "dev"
|
|
51
52
|
Requires-Dist: coverage; extra == "dev"
|
|
52
53
|
Requires-Dist: pipdeptree; extra == "dev"
|
|
@@ -23,6 +23,7 @@ drupal_scout/formatters/jsonformatter.py
|
|
|
23
23
|
drupal_scout/formatters/suggestformatter.py
|
|
24
24
|
drupal_scout/formatters/tableformatter.py
|
|
25
25
|
drupal_scout/tests/__init__.py
|
|
26
|
+
drupal_scout/tests/conftest.py
|
|
26
27
|
drupal_scout/tests/test_application.py
|
|
27
28
|
drupal_scout/tests/test_exceptions.py
|
|
28
29
|
drupal_scout/tests/test_formatterfactory.py
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "drupal-scout"
|
|
3
|
-
version = "3.0.
|
|
3
|
+
version = "3.0.2"
|
|
4
4
|
description = "Scout out for transitive versions of Drupal modules for the upgrade of the core."
|
|
5
5
|
readme = "README.md"
|
|
6
6
|
license = { file = "LICENSE.txt" }
|
|
@@ -29,6 +29,7 @@ dependencies = [
|
|
|
29
29
|
|
|
30
30
|
[project.optional-dependencies]
|
|
31
31
|
dev = [
|
|
32
|
+
'pytest',
|
|
32
33
|
'nose',
|
|
33
34
|
'coverage',
|
|
34
35
|
'pipdeptree',
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|