diff --git a/tests/func/test_daemon.py b/tests/func/test_daemon.py index 8255bc1fd3..40bb5e81a1 100644 --- a/tests/func/test_daemon.py +++ b/tests/func/test_daemon.py @@ -97,6 +97,7 @@ def test_analytics(tmp_path, server): } env.pop("DVC_TEST", None) env.pop("DVC_NO_ANALYTICS", None) + env.pop("GITHUB_ACTIONS", None) output = subprocess.check_output( [*_get_dvc_args(), "config", "-l", "-vv"], @@ -113,7 +114,7 @@ def test_analytics(tmp_path, server): pid = int(match.group(1).strip()) with suppress(psutil.NoSuchProcess): - psutil.Process(pid).wait(timeout=30) + psutil.Process(pid).wait(timeout=10) log_contents = logfile.read_text(encoding="utf8") expected_line = (f"Process {pid} " if os.name != "nt" else "") + "exiting with 0"