Skip to content

Commit aa2f80a

Browse files
debug windows fail
1 parent f226e7e commit aa2f80a

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.github/workflows/ci_tests.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@ jobs:
2424
fail-fast: true
2525
matrix:
2626
os:
27-
- ubuntu-latest
27+
# - ubuntu-latest
2828
- windows-latest
29-
- macos-latest
29+
# - macos-latest
3030
python:
3131
- 3.7
3232
- 3.8

src/aws_encryption_sdk/streaming_client.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,8 @@
7878
from aws_cryptographic_materialproviders.mpl.models import CreateDefaultCryptographicMaterialsManagerInput
7979
from aws_cryptographic_materialproviders.mpl.references import IKeyring
8080
_HAS_MPL = True
81-
except ImportError:
81+
except ImportError as e:
82+
print(e)
8283
_HAS_MPL = False
8384

8485
_LOGGER = logging.getLogger(__name__)

0 commit comments

Comments
 (0)