aboutsummaryrefslogtreecommitdiff
path: root/dev
diff options
context:
space:
mode:
authorwbond <will@wbond.net>2018-04-18 06:45:41 -0400
committerwbond <will@wbond.net>2018-04-18 06:45:41 -0400
commit6bac6b6abd34d7903128e737325a315ae5b2a8a4 (patch)
treea641305c67450fd446b3b29d75240d70a9e7b4fb /dev
parenta0fbd2b719182f88373b94d5475623adbc368d73 (diff)
downloadasn1crypto-6bac6b6abd34d7903128e737325a315ae5b2a8a4.tar.gz
Display the oscrypto backend when running CI task
Diffstat (limited to 'dev')
-rw-r--r--dev/ci.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/dev/ci.py b/dev/ci.py
index 124ad4d..031a3d9 100644
--- a/dev/ci.py
+++ b/dev/ci.py
@@ -33,6 +33,13 @@ def run():
"""
print('Python ' + sys.version.replace('\n', ''))
+
+ try:
+ import oscrypto
+ print('\noscrypto backend: %s' % oscrypto.backend())
+ except (ImportError):
+ pass
+
if run_lint:
print('')
lint_result = run_lint()