diff --git a/selfdrive/locationd/test/test_locationd_scenarios.py b/selfdrive/locationd/test/test_locationd_scenarios.py index 4270af1a19bb49d..363472818df3229 100644 --- a/selfdrive/locationd/test/test_locationd_scenarios.py +++ b/selfdrive/locationd/test/test_locationd_scenarios.py @@ -73,7 +73,6 @@ def run_scenarios(scenario, logs): return get_select_fields_data(logs), get_select_fields_data(replayed_logs) -#@pytest.mark.xdist_group("test_locationd_scenarios") @pytest.mark.shared_download_cache class TestLocationdScenarios: """ diff --git a/tools/lib/url_file.py b/tools/lib/url_file.py index fe8bd3ea84adc29..245d3f12a247d36 100644 --- a/tools/lib/url_file.py +++ b/tools/lib/url_file.py @@ -105,7 +105,7 @@ def read(self, ll: int|None=None) -> bytes: # If we don't have a file, download it if not os.path.exists(full_path): data = self.read_aux(ll=CHUNK_SIZE) - with atomic_write_in_dir(full_path, mode="wb", overwrite=True) as new_cached_file: + with atomic_write_in_dir(full_path, mode="wb") as new_cached_file: new_cached_file.write(data) else: with open(full_path, "rb") as cached_file: