Skip to content

Commit 420500d

Browse files
committed
Fix compatibility with Python 3.13 beta 2
There are more calls in 3.13 than in previous versions so the tests are now more permissive. Fixes: jupyter#316
1 parent 8514e91 commit 420500d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/test_cli.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ def test_mult(input_names, relative, inplace, jupyterapp, client, reader, writer
6060
# add suffix if needed
6161
paths = [p.with_suffix(".ipynb") for p in paths]
6262

63-
assert path_open.mock_calls[::3] == [call(p) for p in paths]
63+
assert all([call(p) in path_open.mock_calls for p in paths])
6464
assert reader.call_count == len(paths)
6565
# assert reader.mock_calls == [call(p, as_version=4) for p in paths]
6666

@@ -114,7 +114,7 @@ def test_output(input_names, relative, output_base, jupyterapp, client, reader,
114114
# add suffix if needed
115115
paths = [p.with_suffix(".ipynb") for p in paths]
116116

117-
assert path_open.mock_calls[::3] == [call(p) for p in paths]
117+
assert all([call(p) in path_open.mock_calls for p in paths])
118118
assert reader.call_count == len(paths)
119119

120120
expected = []

0 commit comments

Comments
 (0)