Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

3.7 and 3.10 unittests fix #2187

Merged
merged 24 commits into from
Apr 5, 2023
Merged
Show file tree
Hide file tree
Changes from 20 commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
539dfc0
check impl
shaangill025 Feb 27, 2023
553b128
fix: askar exception message always displaying null DID
chumbert Mar 6, 2023
92e14de
updates based on feedback
shaangill025 Mar 9, 2023
0c6a92e
Remove CircleCI Status since we aren't using CircleCI anymore
swcurran Mar 14, 2023
ccfcaaf
Delete circleci config file
swcurran Mar 14, 2023
a3d36aa
0.8.0 release
swcurran Mar 14, 2023
82da386
Add this PR to the Changelog
swcurran Mar 14, 2023
f35d070
Fix lint warning on sphinx config
swcurran Mar 14, 2023
c725ada
Change upgrade exception to be a print
swcurran Mar 15, 2023
6eb074e
Updated Changelog, removed change from RaiseError to print
swcurran Mar 15, 2023
fda3faf
Exit if upgrde version is the same as current
ianco Mar 15, 2023
c78e4f3
Formatting issues
ianco Mar 15, 2023
3362d9a
Adds the upgrade command YML file to the PyPi Release
swcurran Mar 23, 2023
71768a3
update pytest to resolve the `lineno` issue on test collection
Jsyro Mar 29, 2023
90dafb3
remove unused import.
Jsyro Mar 29, 2023
6ab2f5d
update rlp package.
Jsyro Mar 29, 2023
18b3427
disable for now.
Jsyro Mar 29, 2023
10a25f8
Merge remote-tracking branch 'Jsyro/main' into jsyro-main
Jsyro Mar 29, 2023
9305352
change flake8 version.
Jsyro Mar 30, 2023
8600d59
too far. try this
Jsyro Mar 30, 2023
bd29588
Merge branch 'main' into main
swcurran Mar 30, 2023
e199465
Merge branch 'main' into main
swcurran Mar 31, 2023
e308b74
Merge branch 'main' into main
Jsyro Mar 31, 2023
b272f7b
Merge branch 'main' into main
swcurran Apr 5, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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