File tree Expand file tree Collapse file tree 1 file changed +12
-4
lines changed
Expand file tree Collapse file tree 1 file changed +12
-4
lines changed Original file line number Diff line number Diff line change @@ -207,10 +207,18 @@ def test_create_poetry_with_packages_and_includes(
207207 {"include" : "src_package" , "from" : "src" },
208208 ]
209209
210- assert package .include == [
211- {"path" : "extra_dir/vcs_excluded.txt" , "format" : []},
212- {"path" : "notes.txt" , "format" : []},
213- ]
210+ assert package .include in (
211+ # with https://github.com/python-poetry/poetry-core/pull/773
212+ [
213+ {"path" : "extra_dir/vcs_excluded.txt" },
214+ {"path" : "notes.txt" },
215+ ],
216+ # without https://github.com/python-poetry/poetry-core/pull/773
217+ [
218+ {"path" : "extra_dir/vcs_excluded.txt" , "format" : []},
219+ {"path" : "notes.txt" , "format" : []},
220+ ],
221+ )
214222
215223
216224def test_create_poetry_with_multi_constraints_dependency (
You can’t perform that action at this time.
0 commit comments