Skip to content

Commit

Permalink
Fix airflow test
Browse files Browse the repository at this point in the history
  • Loading branch information
staticdev committed Dec 15, 2022
1 parent 18622f3 commit b4b41e8
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion tests/integration/test_projects_using_isort.py
Expand Up @@ -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):
Expand Down

0 comments on commit b4b41e8

Please sign in to comment.