Skip to content

Commit

Permalink
Update integration testst to understand new sort_order setting
Browse files Browse the repository at this point in the history
  • Loading branch information
timothycrosley committed Jun 21, 2021
1 parent a1a3aff commit eada928
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions tests/integration/test_setting_combinations.py
Expand Up @@ -56,6 +56,7 @@ def configs() -> st.SearchStrategy[isort.Config]:
"default_section": st.sampled_from(sorted(isort.settings.KNOWN_SECTION_MAPPING)),
"force_grid_wrap": st.integers(0, 20),
"profile": st.sampled_from(sorted(isort.settings.profiles)),
"sort_order": st.sampled_from(sorted(("native", "natural", "natural_plus"))),
"py_version": st.sampled_from(("auto",) + isort.settings.VALID_PY_TARGETS),
}
kwargs = {**inferred_kwargs, **specific}
Expand Down

0 comments on commit eada928

Please sign in to comment.