diff --git a/nmigen/test/test_examples.py b/nmigen/test/test_examples.py index bf729c5..e428a5e 100644 --- a/nmigen/test/test_examples.py +++ b/nmigen/test/test_examples.py @@ -8,7 +8,7 @@ from .tools import * def example_test(name): path = (Path(__file__).parent / ".." / ".." / "examples" / name).resolve() def test_function(self): - subprocess.check_call([sys.executable, path, "generate"], stdout=subprocess.DEVNULL) + subprocess.check_call([sys.executable, str(path), "generate"], stdout=subprocess.DEVNULL) return test_function