From c807ecd7e173908ef0ae6ce0e72102a629369957 Mon Sep 17 00:00:00 2001 From: Maxime Desroches Date: Thu, 3 Jul 2025 18:57:59 -0700 Subject: [PATCH] revert fixed pytest seed --- conftest.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/conftest.py b/conftest.py index 9eda5d612..7e40ec3ed 100644 --- a/conftest.py +++ b/conftest.py @@ -2,7 +2,6 @@ import contextlib import gc import os import pytest -import random from openpilot.common.prefix import OpenpilotPrefix from openpilot.system.manager import manager @@ -48,8 +47,6 @@ def clean_env(): @pytest.fixture(scope="function", autouse=True) def openpilot_function_fixture(request): - random.seed(0) - with clean_env(): # setup a clean environment for each test with OpenpilotPrefix(shared_download_cache=request.node.get_closest_marker("shared_download_cache") is not None) as prefix: