We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 97682f7 commit 0264cb0Copy full SHA for 0264cb0
test/test_pipeline.py
@@ -84,7 +84,10 @@ def test_validate(self, filename):
84
r = get_pipeline(filename)
85
with pytest.raises(RuntimeError) as info:
86
r.execute()
87
- assert "No such file or directory" in str(info.value)
+ if os.name == "nt":
88
+ assert "Unable to open stream for" in str(info.value)
89
+ else:
90
+ assert "No such file or directory" in str(info.value)
91
92
@pytest.mark.parametrize("filename", ["sort.json", "sort.py"])
93
def test_array(self, filename):
0 commit comments