Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Simplify typeshed integration test #2075

Merged
merged 1 commit into from Jan 22, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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