From b4b41e8e6b91e11d862d91e2a2e2d412ca91ff31 Mon Sep 17 00:00:00 2001 From: staticdev Date: Thu, 15 Dec 2022 22:22:52 +0100 Subject: [PATCH] Fix airflow test --- tests/integration/test_projects_using_isort.py | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/tests/integration/test_projects_using_isort.py b/tests/integration/test_projects_using_isort.py index 1ec88d42..0626c211 100644 --- a/tests/integration/test_projects_using_isort.py +++ b/tests/integration/test_projects_using_isort.py @@ -74,7 +74,19 @@ def test_websockets(tmpdir): def test_airflow(tmpdir): git_clone("https://github.com/apache/airflow.git", tmpdir) - run_isort([str(tmpdir), "--skip-glob", "*.pyi", "--skip", "tests", "--skip", "docker_tests"]) + run_isort( + [ + str(tmpdir), + "--skip-glob", + "*.pyi", + "--skip", + "tests", + "--skip", + "docker_tests", + "--skip", + "docs", + ] + ) def test_typeshed(tmpdir):