aboutsummaryrefslogtreecommitdiff
path: root/tests/test_rfc2315.py
diff options
context:
space:
mode:
authorIlya Etingof <etingof@gmail.com>2019-07-20 13:18:25 +0200
committerIlya Etingof <etingof@gmail.com>2019-07-20 13:18:25 +0200
commit63a107fb8a330c58c259f4afe89397124ae29ef8 (patch)
treeec9934d014126b50bfec907a820c5875370bb843 /tests/test_rfc2315.py
parentb5eb18384659ef1da9f72158626c6779c1214679 (diff)
downloadpyasn1-modules-63a107fb8a330c58c259f4afe89397124ae29ef8.tar.gz
Unit tests runner returns proper error status to OS
Diffstat (limited to 'tests/test_rfc2315.py')
-rw-r--r--tests/test_rfc2315.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/tests/test_rfc2315.py b/tests/test_rfc2315.py
index e65ce80..f5837a7 100644
--- a/tests/test_rfc2315.py
+++ b/tests/test_rfc2315.py
@@ -162,7 +162,11 @@ Kv0xuR3b3Le+ZqolT8wQELd5Mmw5JPofZ+O2cGNvet8tYwOKFjEA
assert asn1Object.prettyPrint()
assert der_encoder.encode(asn1Object) == substrate
+
suite = unittest.TestLoader().loadTestsFromModule(sys.modules[__name__])
if __name__ == '__main__':
- unittest.TextTestRunner(verbosity=2).run(suite)
+ import sys
+
+ result = unittest.TextTestRunner(verbosity=2).run(suite)
+ sys.exit(not result.wasSuccessful())