We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 90ef3aa commit 4896680Copy full SHA for 4896680
docs/release.rst
@@ -20,6 +20,9 @@ Enhancements
20
Fix
21
~~~
22
23
+* Fix skip of entry points backport tests
24
+ By :user:`Elliott Sales de Andrade <QuLogic>`, :issue:`487`.
25
+
26
Maintenance
27
~~~~~~~~~~~
28
numcodecs/tests/test_entrypoints_backport.py
@@ -9,7 +9,8 @@
9
import numcodecs.registry
10
11
if not pkgutil.find_loader("importlib_metadata"): # pragma: no cover
12
- pytest.skip("This test module requires importlib_metadata to be installed")
+ pytest.skip("This test module requires importlib_metadata to be installed",
13
+ allow_module_level=True)
14
15
here = os.path.abspath(os.path.dirname(__file__))
16
0 commit comments