Skip to content

Commit

Permalink
Merge pull request ome#260 from manics/fix-test
Browse files Browse the repository at this point in the history
Import test: check stderr for output
  • Loading branch information
sbesson authored Oct 1, 2020
2 parents dabb54f + 595d6b1 commit 2e06457
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/unit/clitest/test_import.py
Original file line number Diff line number Diff line change
@@ -249,7 +249,7 @@ def testImportReaders(self, tmpdir, capfd, params):
with pytest.raises(NonZeroReturnCode):
self.cli.invoke(self.args, strict=True)
o, e = capfd.readouterr()
assert "parsed into 0 group" in o
assert "parsed into 0 group" in e

@pytest.mark.skipif(sys.platform == "win32", reason="Fails on Windows")
@pytest.mark.parametrize('with_ds_store', (True, False))

0 comments on commit 2e06457

Please sign in to comment.