summaryrefslogtreecommitdiff
path: root/tests/integration
diff options
context:
space:
mode:
authorTimothy Crosley <timothy.crosley@gmail.com>2021-02-03 23:47:10 -0800
committerTimothy Crosley <timothy.crosley@gmail.com>2021-02-03 23:47:10 -0800
commit8d6f0b994b0f1917d7c9a195be0b1fc2c17e7bf8 (patch)
treeeb8633119bd9bb6c683b47c65949941a4380dcaa /tests/integration
parent023b929f6e185d2bca18fcd1d5490b39c992a29e (diff)
downloadisort-8d6f0b994b0f1917d7c9a195be0b1fc2c17e7bf8.tar.gz
Fix broken integration test
Diffstat (limited to 'tests/integration')
-rw-r--r--tests/integration/test_projects_using_isort.py4
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):