Skip to content

Commit

Permalink
Pytest windows parser exception (#2157)
Browse files Browse the repository at this point in the history
* fix pytest windows parser exception

* update ci-ubuntu-20.04-lts-workflow.yml

* Revert "update ci-ubuntu-20.04-lts-workflow.yml"

This reverts commit 240b57e.

---------

Co-authored-by: Russell Liu <russell.liu@uwaterloo.ca>
  • Loading branch information
russell-liu and Russell Liu committed Oct 6, 2023
1 parent 2ad9e45 commit ed08557
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/python_api/test/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ def init_tinysnb(conn):
with open(copy_path, "r") as f:
for line in f.readlines():
line = line.strip()
line = line.replace("dataset/tinysnb", tiny_snb_path)
line = line.replace("dataset/tinysnb", "../../../dataset/tinysnb")
if line:
conn.execute(line)

Expand Down

0 comments on commit ed08557

Please sign in to comment.