Upgrade dev dependencies and fix issues after upgrading to pytest-aiohttp v1.0.4

This commit is contained in:
grossmj
2022-08-27 19:16:02 +02:00
parent 9e5ca50302
commit d1c8f33fc5
40 changed files with 108 additions and 89 deletions

View File

@ -18,7 +18,7 @@
import os
import uuid
import pytest
import asyncio
import pytest_asyncio
from gns3server.compute.dynamips.nodes.router import Router
from gns3server.compute.dynamips.dynamips_error import DynamipsError
@ -26,8 +26,8 @@ from gns3server.compute.dynamips import Dynamips
from gns3server.config import Config
@pytest.fixture
async def manager(loop, port_manager):
@pytest_asyncio.fixture
async def manager(port_manager):
m = Dynamips.instance()
m.port_manager = port_manager