Skip to content

Commit 1df8435

Browse files
committed
Avoid masking raw_api integration test failures
1 parent a6899fd commit 1df8435

File tree

1 file changed

+2
-7
lines changed

1 file changed

+2
-7
lines changed

test/integration/test_raw_api.py

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
import re
1616
import sys
1717
import time
18-
import traceback
1918
from typing import List
2019

2120
import pytest
@@ -70,12 +69,8 @@ def test_raw_api(dont_cleanup_old_buckets):
7069

7170
print()
7271

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')
72+
raw_api = B2RawHTTPApi(B2Http())
73+
raw_api_test_helper(raw_api, not dont_cleanup_old_buckets)
7974

8075

8176
def authorize_raw_api(raw_api):

0 commit comments

Comments
 (0)