We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e22cd62 commit 95b4fcfCopy full SHA for 95b4fcf
3 files changed
colibris/commands/test.py
@@ -11,7 +11,7 @@
11
logger = logging.getLogger(__name__)
12
13
_PLUGINS = [
14
- 'pytest-aiohttp',
+ 'aiohttp.pytest_plugin',
15
'colibris.test'
16
]
17
requirements/dev.txt
@@ -2,4 +2,3 @@ tox
2
pytest
3
ruff
4
requests
5
-pytest-aiohttp
tox.ini
@@ -6,7 +6,6 @@ envlist = py311
6
changedir = tests
7
deps = pytest
8
9
- pytest_aiohttp
10
commands = pytest {posargs}
[testenv:lint]
@@ -17,5 +16,4 @@ commands = ruff check colibris {posargs}
18
[pytest]
19
testpaths = tests
20
-asyncio_mode = auto
21
-addopts = -v
+addopts = -v -p aiohttp.pytest_plugin
0 commit comments