Skip to content

Commit eada928

Browse files
Update integration testst to understand new sort_order setting
1 parent a1a3aff commit eada928

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

tests/integration/test_setting_combinations.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ def configs() -> st.SearchStrategy[isort.Config]:
5656
"default_section": st.sampled_from(sorted(isort.settings.KNOWN_SECTION_MAPPING)),
5757
"force_grid_wrap": st.integers(0, 20),
5858
"profile": st.sampled_from(sorted(isort.settings.profiles)),
59+
"sort_order": st.sampled_from(sorted(("native", "natural", "natural_plus"))),
5960
"py_version": st.sampled_from(("auto",) + isort.settings.VALID_PY_TARGETS),
6061
}
6162
kwargs = {**inferred_kwargs, **specific}

0 commit comments

Comments
 (0)