Skip to content

Commit

Permalink
Merge pull request #2187 from Jsyro/main
Browse files Browse the repository at this point in the history
3.7 and 3.10 unittests fix
  • Loading branch information
swcurran authored Apr 5, 2023
2 parents 8e6b520 + b272f7b commit 0343728
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 2 additions & 0 deletions aries_cloudagent/admin/tests/test_admin_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -334,6 +334,7 @@ async def test_visit_insecure_mode(self):

await server.stop()

@pytest.mark.skip(reason="async_case library not compatible with python 3.10")
async def test_visit_secure_mode(self):
settings = {
"admin.admin_insecure_mode": False,
Expand Down Expand Up @@ -386,6 +387,7 @@ async def test_visit_secure_mode(self):

await server.stop()

@pytest.mark.skip(reason="async_case library not compatible with python 3.10")
async def test_query_config(self):
settings = {
"admin.admin_insecure_mode": False,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
from time import time

from asynctest import mock as async_mock, TestCase as AsyncTestCase
from more_itertools import side_effect

from .....core.in_memory import InMemoryProfile
from .....cache.base import BaseCache
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
from asynctest import TestCase as AsyncTestCase
from asynctest import mock as async_mock
from marshmallow import ValidationError
from more_itertools import side_effect

from .. import handler as test_module

Expand Down
4 changes: 2 additions & 2 deletions requirements.dev.txt
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
asynctest==0.13.0
async-case~=10.1
pytest~=5.4.0
pytest~=6.2
pytest-asyncio==0.14.0
pytest-cov==2.10.1
pytest-flake8==1.0.6
mock~=4.0

flake8==3.9.0
flake8==4.0.1
# flake8-rst-docstrings==0.0.8
flake8-docstrings==1.5.0
flake8-rst==0.7.2
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,6 @@ pydid~=0.3.6
jsonpath_ng==1.5.2
pytz~=2021.1
python-dateutil~=2.8.1
rlp==0.5.1
rlp==1.2.0
unflatten~=0.1
qrcode[pil]~=6.1

0 comments on commit 0343728

Please sign in to comment.