Skip to content

Commit f20f185

Browse files
committed
shared
1 parent 8ebb45d commit f20f185

File tree

9 files changed

+200
-576
lines changed

9 files changed

+200
-576
lines changed
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
[report]
2+
omit =
3+
tests/*
4+
tests/*/*
5+
tests/*/*/*
6+
tests/test_*.py
7+
tests/*/test_*.py
8+
tests/*/*/test_*.py
9+
mns_subscription/tests/*
10+
mns_subscription/tests/*/*
11+
mns_subscription/tests/*/*/*
12+
../shared/tests/*
13+
../shared/tests/*/*
14+
../shared/tests/*/*/*

lambdas/mns_subscription/poetry.lock

Lines changed: 182 additions & 203 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lambdas/mns_subscription/src/authentication.py

Lines changed: 0 additions & 76 deletions
This file was deleted.

lambdas/mns_subscription/src/cache.py

Lines changed: 0 additions & 34 deletions
This file was deleted.

lambdas/mns_subscription/src/mns_service.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import uuid
44
import logging
55
import json
6-
from authentication import AppRestrictedAuth
6+
from common.authentication import AppRestrictedAuth
77
from models.errors import (
88
UnhandledResponseError,
99
ResourceNotFoundError,

lambdas/mns_subscription/src/mns_setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import logging
2-
from cache import Cache
2+
from common.cache import Cache
33
from mns_service import MnsService
44
import boto3
5-
from authentication import AppRestrictedAuth, Service
5+
from common.authentication import AppRestrictedAuth, Service
66
from botocore.config import Config
77

88
logging.basicConfig(level=logging.INFO)

lambdas/mns_subscription/tests/test_authentication.py

Lines changed: 0 additions & 190 deletions
This file was deleted.

0 commit comments

Comments
 (0)