File tree 1 file changed +5
-3
lines changed
1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -172,21 +172,23 @@ def store_in_redis(repository):
172
172
173
173
@pytest .fixture
174
174
def store_in_storage (repository , mock_storage ):
175
+ from django .conf import settings
176
+
175
177
try :
176
- mock_storage .create_root_storage ("codecov" )
178
+ mock_storage .create_root_storage (settings . GCS_BUCKET_NAME )
177
179
except BucketAlreadyExistsError :
178
180
pass
179
181
180
182
mock_storage .write_file (
181
- "codecov" ,
183
+ settings . GCS_BUCKET_NAME ,
182
184
f"test_results/rollups/{ repository .repoid } /{ repository .branch } /30" ,
183
185
test_results_table .write_ipc (None ).getvalue (),
184
186
)
185
187
186
188
yield
187
189
188
190
mock_storage .delete_file (
189
- "codecov" ,
191
+ settings . GCS_BUCKET_NAME ,
190
192
f"test_results/rollups/{ repository .repoid } /{ repository .branch } /30" ,
191
193
)
192
194
You can’t perform that action at this time.
0 commit comments