Skip to content

Commit cd559dc

Browse files
authored
Remove --recursive from isort in test_project.py
1 parent 01706eb commit cd559dc

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/test_project.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ def test_isort_check(baked_with_development_dependencies, project_env_bin_dir):
156156
project_dir = baked_with_development_dependencies
157157
bin_dir = project_env_bin_dir
158158

159-
result = run([f'{bin_dir}isort', '--recursive', '--check-only', 'my_python_package'], project_dir)
159+
result = run([f'{bin_dir}isort', '--check-only', 'my_python_package'], project_dir)
160160
assert result.returncode == 0
161161
assert '' in result.stdout
162162

0 commit comments

Comments
 (0)