Skip to content

Commit 07a516c

Browse files
authored
Merge pull request #2075 from AlexWaygood/typeshed-integration
Simplify typeshed integration test
2 parents bd78bea + 5a288a4 commit 07a516c

File tree

1 file changed

+2
-18
lines changed

1 file changed

+2
-18
lines changed

tests/integration/test_projects_using_isort.py

Lines changed: 2 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ def test_tmuxp(tmpdir):
6666
"--skip",
6767
"workspacebuilder.py",
6868
"--skip",
69-
"src/tmuxp/workspace/freezer.py"
69+
"src/tmuxp/workspace/freezer.py",
7070
]
7171
)
7272

@@ -78,23 +78,7 @@ def test_websockets(tmpdir):
7878

7979
def test_typeshed(tmpdir):
8080
git_clone("https://github.com/python/typeshed.git", tmpdir)
81-
run_isort(
82-
(
83-
str(tmpdir),
84-
"--skip",
85-
"tests",
86-
"--skip",
87-
"scripts",
88-
"--skip",
89-
f"{tmpdir}/third_party/2and3/yaml/__init__.pyi",
90-
"--skip",
91-
"builtins.pyi",
92-
"--skip",
93-
"ast.pyi",
94-
"--skip",
95-
f"{tmpdir}/stdlib/venv/__init__.pyi",
96-
)
97-
)
81+
run_isort([str(tmpdir)])
9882

9983

10084
def test_pylint(tmpdir):

0 commit comments

Comments
 (0)