You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Raise when using deprecated positional arguments for fixture decorator
120
+
121
+
Raise when using deprecated positional arguments for fixture decorator ([ref](https://docs.pytest.org/en/stable/deprecations.html#pytest-fixture-arguments-are-keyword-only))
122
+
119
123
```python
120
124
import pytest
121
125
122
-
@pytest.fixture("module")
126
+
@pytest.fixture("module")# <- Using a deprecated positional arguments for fixture
0 commit comments