summaryrefslogtreecommitdiff
path: root/tests/integration
diff options
context:
space:
mode:
authorbarrelful <unvaguely_lay@aleeas.com>2022-12-11 15:37:23 +0100
committerbarrelful <unvaguely_lay@aleeas.com>2022-12-11 15:37:23 +0100
commit864ef260875ddc83fcc7492fec7040704c00645c (patch)
tree2b30f82c2ce0bb2b3dfba64262e5354ad4d34cd1 /tests/integration
parentb4d285c400bfb15e8861d0134c35ff00f8fe3594 (diff)
downloadisort-864ef260875ddc83fcc7492fec7040704c00645c.tar.gz
Remove Python 3.6
Diffstat (limited to 'tests/integration')
-rw-r--r--tests/integration/test_projects_using_isort.py13
1 files changed, 12 insertions, 1 deletions
diff --git a/tests/integration/test_projects_using_isort.py b/tests/integration/test_projects_using_isort.py
index fd13460b..d6fc0020 100644
--- a/tests/integration/test_projects_using_isort.py
+++ b/tests/integration/test_projects_using_isort.py
@@ -120,7 +120,18 @@ def test_poetry(tmpdir):
def test_hypothesis(tmpdir):
git_clone("https://github.com/HypothesisWorks/hypothesis.git", tmpdir)
run_isort(
- (str(tmpdir), "--skip", "tests", "--profile", "black", "--ca", "--project", "hypothesis", "--project", "hypothesistooling")
+ (
+ str(tmpdir),
+ "--skip",
+ "tests",
+ "--profile",
+ "black",
+ "--ca",
+ "--project",
+ "hypothesis",
+ "--project",
+ "hypothesistooling",
+ )
)