diff options
| author | AlexWaygood <alex.waygood@gmail.com> | 2023-01-22 13:10:11 +0000 |
|---|---|---|
| committer | AlexWaygood <alex.waygood@gmail.com> | 2023-01-22 13:10:11 +0000 |
| commit | 5a288a4ab623fa21a9ce453374402853d6915d7f (patch) | |
| tree | a890ab7785b6c93782d502e2ba548673311ee37f /tests | |
| parent | bd78bea5d21c233bc2a0e31f01eae7b9a8979a5c (diff) | |
| download | isort-5a288a4ab623fa21a9ce453374402853d6915d7f.tar.gz | |
Simplify typeshed integration test
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/integration/test_projects_using_isort.py | 20 |
1 files changed, 2 insertions, 18 deletions
diff --git a/tests/integration/test_projects_using_isort.py b/tests/integration/test_projects_using_isort.py index c3a9f6b4..87ee6b40 100644 --- a/tests/integration/test_projects_using_isort.py +++ b/tests/integration/test_projects_using_isort.py @@ -66,7 +66,7 @@ def test_tmuxp(tmpdir): "--skip", "workspacebuilder.py", "--skip", - "src/tmuxp/workspace/freezer.py" + "src/tmuxp/workspace/freezer.py", ] ) @@ -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): |
