We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d9f0597 commit 5f74638Copy full SHA for 5f74638
1 file changed
pytest_asdf/plugin.py
@@ -1,8 +1,6 @@
1
import importlib
2
-import io
3
import os
4
import pathlib
5
-import warnings
6
from dataclasses import dataclass
7
8
import pytest
@@ -206,8 +204,8 @@ def runtest(self):
206
204
import asdf
207
205
from asdf.testing.helpers import yaml_to_asdf
208
209
- # warn inside test
210
- warnings.warn("pytest_asdf is deprecated, install pytest_asdf_plugin instead", DeprecationWarning)
+ # warn inside test, we don't do this yet to allow time for downstream packages to adopt pytest-asdf-plugin
+ # warnings.warn("pytest_asdf is deprecated, install pytest_asdf_plugin instead", DeprecationWarning)
211
212
# check the example is valid
213
buff = yaml_to_asdf("example: " + self.example.example.strip(), version=self.example.version)
0 commit comments