Skip to content

Commit d1176e7

Browse files
committed
Fix integration tests
1 parent 64daf96 commit d1176e7

File tree

1 file changed

+0
-80
lines changed

1 file changed

+0
-80
lines changed

tests/integration/test_projects_using_isort.py

Lines changed: 0 additions & 80 deletions
Original file line numberDiff line numberDiff line change
@@ -42,55 +42,16 @@ def test_pandas(tmpdir):
4242
run_isort((str(tmpdir / "pandas"), "--skip", "__init__.py"))
4343

4444

45-
def test_fastapi(tmpdir):
46-
git_clone("https://github.com/tiangolo/fastapi.git", tmpdir)
47-
run_isort([str(tmpdir / "fastapi")])
48-
49-
5045
def test_habitat_lab(tmpdir):
5146
git_clone("https://github.com/facebookresearch/habitat-lab.git", tmpdir)
5247
run_isort([str(tmpdir)])
5348

5449

55-
def test_tmuxp(tmpdir):
56-
git_clone("https://github.com/tmux-python/tmuxp.git", tmpdir)
57-
run_isort(
58-
[
59-
str(tmpdir),
60-
"--skip",
61-
"cli.py",
62-
"--skip",
63-
"test_workspacebuilder.py",
64-
"--skip",
65-
"test_cli.py",
66-
"--skip",
67-
"workspacebuilder.py",
68-
"--skip",
69-
"freezer.py",
70-
]
71-
)
72-
73-
74-
def test_websockets(tmpdir):
75-
git_clone("https://github.com/aaugustin/websockets.git", tmpdir)
76-
run_isort((str(tmpdir), "--skip", "example", "--skip", "docs", "--skip", "compliance"))
77-
78-
79-
def test_typeshed(tmpdir):
80-
git_clone("https://github.com/python/typeshed.git", tmpdir)
81-
run_isort([str(tmpdir)])
82-
83-
8450
def test_pylint(tmpdir):
8551
git_clone("https://github.com/PyCQA/pylint.git", tmpdir)
8652
run_isort([str(tmpdir), "--skip", "bad.py"])
8753

8854

89-
def test_poetry(tmpdir):
90-
git_clone("https://github.com/python-poetry/poetry.git", tmpdir)
91-
run_isort((str(tmpdir), "--skip", "tests"))
92-
93-
9455
def test_hypothesis(tmpdir):
9556
git_clone("https://github.com/HypothesisWorks/hypothesis.git", tmpdir)
9657
run_isort(
@@ -109,47 +70,6 @@ def test_hypothesis(tmpdir):
10970
)
11071

11172

112-
def test_pillow(tmpdir):
113-
git_clone("https://github.com/python-pillow/Pillow.git", tmpdir)
114-
run_isort((str(tmpdir), "--skip", "tests"))
115-
116-
117-
def test_attrs(tmpdir):
118-
git_clone("https://github.com/python-attrs/attrs.git", tmpdir)
119-
run_isort(
120-
(
121-
str(tmpdir),
122-
"--skip",
123-
"tests",
124-
"--ext",
125-
"py",
126-
"--skip",
127-
"_compat.py",
128-
)
129-
)
130-
131-
132-
def test_datadog_integrations_core(tmpdir):
133-
git_clone("https://github.com/DataDog/integrations-core.git", tmpdir)
134-
run_isort(
135-
[
136-
str(tmpdir),
137-
"--skip",
138-
"ddev",
139-
"--skip",
140-
"docs",
141-
"--skip-glob",
142-
".*",
143-
"--skip-glob",
144-
"*/datadog_checks/dev/tooling/signing.py",
145-
"--skip-glob",
146-
"*/datadog_checks/dev/tooling/templates/*",
147-
"--skip-glob",
148-
"*/datadog_checks/*/vendor/*",
149-
]
150-
)
151-
152-
15373
def test_pyramid(tmpdir):
15474
git_clone("https://github.com/Pylons/pyramid.git", tmpdir)
15575
run_isort(

0 commit comments

Comments
 (0)