diff options
| author | Timothy Crosley <timothy.crosley@gmail.com> | 2021-07-29 23:06:18 -0700 |
|---|---|---|
| committer | Timothy Crosley <timothy.crosley@gmail.com> | 2021-07-29 23:06:18 -0700 |
| commit | acf43fccb22b33a7a0ef9eff5cd4b50a7fe3027b (patch) | |
| tree | 708d20e2761ac5f1925e2d94d7c27b8a621a2825 /tests | |
| parent | a43330872877060aaccf8df1bf4125f6bb0874e5 (diff) | |
| download | isort-acf43fccb22b33a7a0ef9eff5cd4b50a7fe3027b.tar.gz | |
Revert "Revert "Fixed #1785: module incorrectly excluded from stdlib definition.""
This reverts commit 8ae8d5045bcc4b80850d22fc4191dc36552d4e5b.
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/integration/test_projects_using_isort.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/integration/test_projects_using_isort.py b/tests/integration/test_projects_using_isort.py index 207f38c4..2787fb83 100644 --- a/tests/integration/test_projects_using_isort.py +++ b/tests/integration/test_projects_using_isort.py @@ -83,7 +83,7 @@ def test_websockets(tmpdir): def test_airflow(tmpdir): git_clone("https://github.com/apache/airflow.git", tmpdir) - run_isort([str(tmpdir), "--skip-glob", "*/_vendor/*"]) + run_isort([str(tmpdir), "--skip-glob", "*/_vendor/*", "--skip", "tests"]) def test_typeshed(tmpdir): @@ -97,6 +97,8 @@ def test_typeshed(tmpdir): "scripts", "--skip", f"{tmpdir}/third_party/2and3/yaml/__init__.pyi", + "--skip", + f"{tmpdir}/stdlib/ast.pyi", ) ) |
