Initial feedstock commit with conda-smithy 3.21.1.
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
"""Typeguard support for tests."""
|
||||
import pytest
|
||||
|
||||
try:
|
||||
import typeguard # noqa: F401
|
||||
except ImportError:
|
||||
has_typeguard = False
|
||||
else:
|
||||
has_typeguard = True
|
||||
|
||||
|
||||
skip_if_typeguard = pytest.mark.skipif(
|
||||
has_typeguard,
|
||||
reason="Broken if Typeguard is enabled",
|
||||
)
|
||||
Reference in New Issue
Block a user