From f5123ff04f57e2670e4f8cf8c62fb6075541d607 Mon Sep 17 00:00:00 2001 From: Oliver Holworthy Date: Mon, 13 Mar 2023 12:33:27 +0000 Subject: [PATCH] Update default value of cpu to None in dataset fixture --- tests/conftest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/conftest.py b/tests/conftest.py index b51fc6cfc..ce1c7b4f6 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -188,7 +188,7 @@ def dataset(request, paths, engine): try: cpu = request.getfixturevalue("cpu") except Exception: # pylint: disable=broad-except - cpu = False + cpu = None kwargs = {} if engine == "csv-no-header":