Merge pull request #2101 from GNS3/upgrade-dev-dependencies

Upgrade dev dependencies
This commit is contained in:
Jeremy Grossmann 2022-08-28 00:01:53 +02:00 committed by GitHub
commit 3444615253
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
10 changed files with 15 additions and 13 deletions

View File

@ -2,9 +2,13 @@ name: testing
on: on:
push: push:
branches: [ master ] branches:
- master
- 2.2
pull_request: pull_request:
branches: [ master ] branches:
- master
- 2.2
jobs: jobs:
build: build:

View File

@ -5,7 +5,7 @@ image: Visual Studio 2015
platform: x64 platform: x64
environment: environment:
PYTHON: "C:\\Python36-x64" PYTHON: "C:\\Python37-x64"
DISTUTILS_USE_SDK: "1" DISTUTILS_USE_SDK: "1"
API_TOKEN: API_TOKEN:
secure: VEKn4bYH3QO0ixtQW5ni4Enmn8cS1NlZV246ludBDgQ= secure: VEKn4bYH3QO0ixtQW5ni4Enmn8cS1NlZV246ludBDgQ=

View File

@ -1,6 +1,8 @@
-rrequirements.txt -rrequirements.txt
pytest==7.0.0 pytest==7.0.1; python_version < '3.7' # last version to support Python 3.6
flake8==4.0.1 pytest==7.1.2; python_version >= '3.7'
pytest-timeout==1.4.2 flake8==5.0.4
pytest-aiohttp==0.3.0 pytest-timeout==2.1.0
pytest-aiohttp==0.3.0; python_version < '3.7' # last version to support Python 3.6
pytest-aiohttp==1.0.4; python_version >= '3.7'

View File

@ -147,7 +147,7 @@ class Route(object):
else: else:
route = path route = path
# Compute metadata for the documentation # Compute metadata for the documentation
if api_version: if api_version:
handler = func.__module__.replace("_handler", "").replace("gns3server.handlers.api.", "") handler = func.__module__.replace("_handler", "").replace("gns3server.handlers.api.", "")
cls._documentation.setdefault(handler, {}) cls._documentation.setdefault(handler, {})

View File

@ -1,3 +1,4 @@
[pytest] [pytest]
asyncio_mode=auto
log_level=NOTSET log_level=NOTSET
ignore=env ignore=env

View File

@ -18,7 +18,6 @@
import os import os
import uuid import uuid
import pytest import pytest
import asyncio
from gns3server.compute.dynamips.nodes.router import Router from gns3server.compute.dynamips.nodes.router import Router
from gns3server.compute.dynamips.dynamips_error import DynamipsError from gns3server.compute.dynamips.dynamips_error import DynamipsError

View File

@ -18,7 +18,6 @@
from collections import OrderedDict from collections import OrderedDict
import pytest import pytest
import asyncio
from tests.utils import asyncio_patch, AsyncioMagicMock from tests.utils import asyncio_patch, AsyncioMagicMock

View File

@ -15,7 +15,6 @@
# You should have received a copy of the GNU General Public License # You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>. # along with this program. If not, see <http://www.gnu.org/licenses/>.
import pytest import pytest
from gns3server.compute.vmware import VMware from gns3server.compute.vmware import VMware

View File

@ -16,7 +16,6 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>. # along with this program. If not, see <http://www.gnu.org/licenses/>.
import pytest import pytest
import asyncio
from gns3server.compute.vmware.vmware_vm import VMwareVM from gns3server.compute.vmware.vmware_vm import VMwareVM
from gns3server.compute.vmware import VMware from gns3server.compute.vmware import VMware

View File

@ -16,7 +16,6 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>. # along with this program. If not, see <http://www.gnu.org/licenses/>.
import pytest import pytest
import asyncio
from tests.utils import asyncio_patch, AsyncioMagicMock from tests.utils import asyncio_patch, AsyncioMagicMock
from gns3server.utils.asyncio import wait_run_in_executor from gns3server.utils.asyncio import wait_run_in_executor