From 391f197731efca3107581f956be47207058674bc Mon Sep 17 00:00:00 2001 From: Oliver Holworthy Date: Fri, 17 Mar 2023 16:13:10 +0000 Subject: [PATCH] Update default value of cpu to None in dataset fixture (#294) Co-authored-by: Karl Higley --- tests/conftest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/conftest.py b/tests/conftest.py index 2370ca3b3..505045897 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -204,7 +204,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":