File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 33
44src_dir = os .path .abspath (os .path .join (os .path .dirname (__file__ ), '..' ))
55sys .path .extend ([
6- os .path .join (src_dir , 'resiliparse' ),
7- os .path .join (src_dir , 'fastwarc' )
6+ os .path .join (src_dir , 'resiliparse-py ' ),
7+ os .path .join (src_dir , 'fastwarc-py ' )
88])
99
1010if sys .platform == 'win32' and sys .version_info .minor >= 8 :
Original file line number Diff line number Diff line change @@ -98,6 +98,7 @@ def test_bulk_actions():
9898
9999
100100@pytest .mark .slow
101+ @pytest .mark .filterwarnings ('ignore::pytest.PytestUnhandledThreadExceptionWarning' )
101102def test_bulk_index_with_error ():
102103 # With client error
103104 global MOCK_RETURN_CODE
@@ -134,6 +135,7 @@ def test_bulk_index_with_error():
134135
135136
136137@pytest .mark .slow
138+ @pytest .mark .filterwarnings ('ignore::pytest.PytestUnhandledThreadExceptionWarning' )
137139def test_bulk_kv_pairs ():
138140 docs = [
139141 ('doc1' , {'field' : 'value' }),
You can’t perform that action at this time.
0 commit comments