diff options
| author | Timothy Crosley <timothy.crosley@gmail.com> | 2021-02-03 23:47:10 -0800 |
|---|---|---|
| committer | Timothy Crosley <timothy.crosley@gmail.com> | 2021-02-03 23:47:10 -0800 |
| commit | 8d6f0b994b0f1917d7c9a195be0b1fc2c17e7bf8 (patch) | |
| tree | eb8633119bd9bb6c683b47c65949941a4380dcaa /tests/integration | |
| parent | 023b929f6e185d2bca18fcd1d5490b39c992a29e (diff) | |
| download | isort-8d6f0b994b0f1917d7c9a195be0b1fc2c17e7bf8.tar.gz | |
Fix broken integration test
Diffstat (limited to 'tests/integration')
| -rw-r--r-- | tests/integration/test_projects_using_isort.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/integration/test_projects_using_isort.py b/tests/integration/test_projects_using_isort.py index 17cea29c..5c172f07 100644 --- a/tests/integration/test_projects_using_isort.py +++ b/tests/integration/test_projects_using_isort.py @@ -113,7 +113,9 @@ def test_poetry(tmpdir): def test_hypothesis(tmpdir): git_clone("https://github.com/HypothesisWorks/hypothesis.git", tmpdir) - run_isort((str(tmpdir), "--skip", "tests")) + run_isort( + (str(tmpdir), "--skip", "tests", "--profile", "black", "--ca", "--project", "hypothesis") + ) def test_pillow(tmpdir): |
