Skip to content

Commit

Permalink
Run upgrades and fix tests
Browse files Browse the repository at this point in the history
Signed-off-by: jamshale <jamiehalebc@gmail.com>
  • Loading branch information
jamshale committed Jan 9, 2024
1 parent 6a2494a commit b67fbd3
Show file tree
Hide file tree
Showing 25 changed files with 821 additions and 4,875 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
__pycache__/
.pytest_cache/
.ruff_cache/
test-reports/
.test-reports/
**/test-reports/
.coverage
coverage.xml
settings.json
Expand Down
6 changes: 0 additions & 6 deletions basicmessage_storage/docker/default.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,6 @@ plugin:
#config
genesis-url: http://test.bcovrin.vonx.io/genesis

# Multi-tenancy
multitenant: true
multitenant-admin: true
jwt-secret: insecure-jwt-secret
multitenancy-config: '{"wallet-type":"askar-profile","wallet-name":"askar-wallet"}'

# Wallet
wallet-type: askar
log-level: info
Expand Down
1,944 changes: 1 addition & 1,943 deletions basicmessage_storage/integration/poetry.lock

Large diffs are not rendered by default.

1 change: 0 additions & 1 deletion basicmessage_storage/integration/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ pytest = "^7.4.0"
pytest-asyncio = "^0.21.0"
asynctest = "^0.13.0"
requests = "^2.31.0"
aries-cloudagent = { version = ">=0.10.3, < 1.0.0" }

[tool.poetry.dev-dependencies]

Expand Down
226 changes: 101 additions & 125 deletions basicmessage_storage/poetry.lock

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions basicmessage_storage/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ ignore = [
testpaths = "basicmessage_storage"
addopts = """
-p no:warnings
--quiet --junitxml=./test-reports/junit.xml
--quiet --junitxml=./.test-reports/junit.xml
--cov-config .coveragerc --cov=basicmessage_storage --cov-report term --cov-report xml
"""
markers = []
Expand All @@ -67,7 +67,7 @@ omit = [
"integration/*",
"*/definition.py"
]
data_file = "test-reports/.coverage"
data_file = ".test-reports/.coverage"

[tool.coverage.report]
exclude_lines = [
Expand All @@ -79,7 +79,7 @@ skip_covered = true
show_missing = true

[tool.coverage.xml]
output = "test-reports/coverage.xml"
output = ".test-reports/coverage.xml"

[build-system]
requires = ["setuptools", "poetry-core>=1.2"]
Expand Down
190 changes: 83 additions & 107 deletions connection_update/integration/poetry.lock

Large diffs are not rendered by default.

226 changes: 101 additions & 125 deletions connection_update/poetry.lock

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions connection_update/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ ignore = [
testpaths = "connection_update"
addopts = """
-p no:warnings
--quiet --junitxml=./test-reports/junit.xml
--quiet --junitxml=./.test-reports/junit.xml
--cov-config .coveragerc --cov=connection_update --cov-report term --cov-report xml
"""
markers = []
Expand All @@ -66,7 +66,7 @@ omit = [
"integration/*",
"*/definition.py"
]
data_file = "test-reports/.coverage"
data_file = ".test-reports/.coverage"

[tool.coverage.report]
exclude_lines = [
Expand All @@ -78,7 +78,7 @@ skip_covered = true
show_missing = true

[tool.coverage.xml]
output = "test-reports/coverage.xml"
output = ".test-reports/coverage.xml"

[build-system]
requires = ["setuptools", "poetry-core>=1.2"]
Expand Down
10 changes: 0 additions & 10 deletions kafka_events/integration/poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit b67fbd3

Please sign in to comment.