From b90c4035b381c9bdb09f12203c2470b8cbca1c24 Mon Sep 17 00:00:00 2001 From: Joe Rickerby Date: Thu, 16 Jul 2020 07:56:15 +0100 Subject: [PATCH] Update test_environment.py --- test/test_environment.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_environment.py b/test/test_environment.py index 6ff4dbd1..7a608836 100644 --- a/test/test_environment.py +++ b/test/test_environment.py @@ -65,7 +65,7 @@ def test_overridden_path(tmp_path, capfd): (new_path / 'python').touch(mode=0o777) utils.cibuildwheel_run(project_dir, output_dir=output_dir, add_env={ - 'NEW_PATH': new_path, + 'NEW_PATH': str(new_path), 'CIBW_ENVIRONMENT': f'''PATH="$NEW_PATH{os.pathsep}$PATH''', })