diracx-testing 0.0.1a32__py3-none-any.whl → 0.0.1a33__py3-none-any.whl
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.
- diracx/testing/entrypoints.py +5 -3
- {diracx_testing-0.0.1a32.dist-info → diracx_testing-0.0.1a33.dist-info}/METADATA +1 -1
- {diracx_testing-0.0.1a32.dist-info → diracx_testing-0.0.1a33.dist-info}/RECORD +5 -5
- {diracx_testing-0.0.1a32.dist-info → diracx_testing-0.0.1a33.dist-info}/WHEEL +0 -0
- {diracx_testing-0.0.1a32.dist-info → diracx_testing-0.0.1a33.dist-info}/top_level.txt +0 -0
diracx/testing/entrypoints.py
CHANGED
@@ -57,11 +57,13 @@ def verify_entry_points(request, pytestconfig):
|
|
57
57
|
else:
|
58
58
|
return
|
59
59
|
|
60
|
-
installed_eps = get_installed_entry_points()
|
61
|
-
current_eps = get_current_entry_points(repo_base)
|
60
|
+
installed_eps = set(get_installed_entry_points())
|
61
|
+
current_eps = set(get_current_entry_points(repo_base))
|
62
62
|
|
63
63
|
if installed_eps != current_eps:
|
64
64
|
pytest.fail(
|
65
65
|
"Project and installed entry-points are not consistent. "
|
66
|
-
"You should run `pip install -r requirements-dev.txt`"
|
66
|
+
"You should run `pip install -r requirements-dev.txt`"
|
67
|
+
f"{installed_eps-current_eps=}",
|
68
|
+
f"{current_eps-installed_eps=}",
|
67
69
|
)
|
@@ -1,11 +1,11 @@
|
|
1
1
|
diracx/testing/__init__.py,sha256=nGbnGP8m53N9rqHR-hyqDa5vetcsmnQp806HadV6_dE,984
|
2
2
|
diracx/testing/dummy_osdb.py,sha256=bNk3LF8KgMuQx3RVFNYuw4hMmpG2A80sZ58rEZqHo7M,907
|
3
|
-
diracx/testing/entrypoints.py,sha256=
|
3
|
+
diracx/testing/entrypoints.py,sha256=ql7byyUOnUBdDoiN5xznlUTQSbD1YCNy4UF5t9MBhgc,2330
|
4
4
|
diracx/testing/mock_osdb.py,sha256=hHuvmQZ3212SaSGX11dQv4ki3ZWsmqJZFYwdn6kg2MA,6029
|
5
5
|
diracx/testing/osdb.py,sha256=m6mUBLnGOoQLTCIBie9P2GhmLMybrgzIrlIYfhF1_Ss,3230
|
6
6
|
diracx/testing/routers.py,sha256=UW-TnikMQgcNxF5sUZD5DWoucGiCpP6s8mYmuahDiSc,979
|
7
7
|
diracx/testing/utils.py,sha256=T3tTzEOhmibcIu6TPwvoaZ6lFgHlU0t9FDHSetKP5EI,24341
|
8
|
-
diracx_testing-0.0.
|
9
|
-
diracx_testing-0.0.
|
10
|
-
diracx_testing-0.0.
|
11
|
-
diracx_testing-0.0.
|
8
|
+
diracx_testing-0.0.1a33.dist-info/METADATA,sha256=KY5UVLn9WSrGR0sNw1aX7LpviZncixfvmn4dN2DVmv4,634
|
9
|
+
diracx_testing-0.0.1a33.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
|
10
|
+
diracx_testing-0.0.1a33.dist-info/top_level.txt,sha256=vJx10tdRlBX3rF2Psgk5jlwVGZNcL3m_7iQWwgPXt-U,7
|
11
|
+
diracx_testing-0.0.1a33.dist-info/RECORD,,
|
File without changes
|
File without changes
|