Skip to content

Commit 304e187

Browse files
authored
Merge pull request #73 from rhutkovich/fix-tests-on-windows
Fix test paths on Windows
2 parents a34db24 + 1e887ca commit 304e187

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/smoketests/test_run_smoketest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ def collect_backends():
3434
def test_api_example(backend):
3535
"""For each of the examples start the API and see if the root endpoint is reachable"""
3636
api_process = subprocess.Popen(
37-
[sys.executable, Path(__file__).parent / backend / "api.py"],
37+
[sys.executable, str(os.path.join(Path(__file__).parent, backend, "api.py"))],
3838
stdout=sys.stdout,
3939
stderr=subprocess.STDOUT,
4040
)

0 commit comments

Comments
 (0)