From 4d5b69cc9efec9078fc7b516bc086a12a0e7da2f Mon Sep 17 00:00:00 2001 From: Aaron Virshup Date: Mon, 5 Mar 2018 16:11:30 -0800 Subject: [PATCH] Fix path type for python 2 test --- pyccc/tests/test_dir_refs.py | 1 + 1 file changed, 1 insertion(+) diff --git a/pyccc/tests/test_dir_refs.py b/pyccc/tests/test_dir_refs.py index 827512b..49fb3eb 100644 --- a/pyccc/tests/test_dir_refs.py +++ b/pyccc/tests/test_dir_refs.py @@ -87,6 +87,7 @@ def test_put_directory_reference_with_renaming(request, fixturename, tmpdir, rel def test_get_directory_with_subdirs(tmpdir): engine = pyccc.Docker() + tmpdir = str(tmpdir) cmd = ("mkdir -p /opt/blah/fugu && echo a > /opt/blah/a" " && echo b > /opt/blah/b && echo fish > /opt/blah/fugu/fish")