summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorstaticdev <staticdev-support@protonmail.com>2022-12-15 22:22:52 +0100
committerstaticdev <staticdev-support@protonmail.com>2022-12-15 22:22:52 +0100
commitb4b41e8e6b91e11d862d91e2a2e2d412ca91ff31 (patch)
treeddda11c7bd0bccc8a63bc0a4d9f0f9d1c4db1902 /tests
parent18622f36aa77f6b0306f3dc2a76e47370041bd9b (diff)
downloadisort-b4b41e8e6b91e11d862d91e2a2e2d412ca91ff31.tar.gz
Fix airflow test
Diffstat (limited to 'tests')
-rw-r--r--tests/integration/test_projects_using_isort.py14
1 files changed, 13 insertions, 1 deletions
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):