We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a6899fd commit 1df8435Copy full SHA for 1df8435
test/integration/test_raw_api.py
@@ -15,7 +15,6 @@
15
import re
16
import sys
17
import time
18
-import traceback
19
from typing import List
20
21
import pytest
@@ -70,12 +69,8 @@ def test_raw_api(dont_cleanup_old_buckets):
70
69
71
print()
72
73
- try:
74
- raw_api = B2RawHTTPApi(B2Http())
75
- raw_api_test_helper(raw_api, not dont_cleanup_old_buckets)
76
- except Exception:
77
- traceback.print_exc(file=sys.stdout)
78
- pytest.fail('test_raw_api failed')
+ raw_api = B2RawHTTPApi(B2Http())
+ raw_api_test_helper(raw_api, not dont_cleanup_old_buckets)
79
80
81
def authorize_raw_api(raw_api):
0 commit comments