Skip to content

Commit

Permalink
Merge pull request #2075 from AlexWaygood/typeshed-integration
Browse files Browse the repository at this point in the history
Simplify typeshed integration test
  • Loading branch information
staticdev committed Jan 22, 2023
2 parents bd78bea + 5a288a4 commit 07a516c
Showing 1 changed file with 2 additions and 18 deletions.
20 changes: 2 additions & 18 deletions tests/integration/test_projects_using_isort.py
Expand Up @@ -66,7 +66,7 @@ def test_tmuxp(tmpdir):
"--skip",
"workspacebuilder.py",
"--skip",
"src/tmuxp/workspace/freezer.py"
"src/tmuxp/workspace/freezer.py",
]
)

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

def test_typeshed(tmpdir):
git_clone("https://github.com/python/typeshed.git", tmpdir)
run_isort(
(
str(tmpdir),
"--skip",
"tests",
"--skip",
"scripts",
"--skip",
f"{tmpdir}/third_party/2and3/yaml/__init__.pyi",
"--skip",
"builtins.pyi",
"--skip",
"ast.pyi",
"--skip",
f"{tmpdir}/stdlib/venv/__init__.pyi",
)
)
run_isort([str(tmpdir)])


def test_pylint(tmpdir):
Expand Down

0 comments on commit 07a516c

Please sign in to comment.