summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTamas Szabo <szabtam@gmail.com>2020-08-25 22:57:27 +0300
committerTamas Szabo <szabtam@gmail.com>2020-08-25 22:57:27 +0300
commit76e650a723660a4732e3bb3f74b8edb906fe1d48 (patch)
tree09118ac76b804e9d87be8c8fb6dfa045c2ac1ff1
parent1371f0429fb26d3ee79070e523a072b2c2adeccc (diff)
parentbddd1d2c66bd884488aea71ee26753f77e3bcc5e (diff)
downloadisort-issue/1405/add-coloring-to-diff-output.tar.gz
Merge branch 'develop' into issue/1405/add-coloring-to-diff-outputissue/1405/add-coloring-to-diff-output
-rw-r--r--tests/integration/test_projects_using_isort.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/integration/test_projects_using_isort.py b/tests/integration/test_projects_using_isort.py
index 036b604c..08f174fd 100644
--- a/tests/integration/test_projects_using_isort.py
+++ b/tests/integration/test_projects_using_isort.py
@@ -8,6 +8,8 @@ Having your project tested here is the most sure way to keep those regressions f
"""
from subprocess import check_call
+import pytest
+
from isort.main import main
@@ -94,6 +96,9 @@ def test_websockets(tmpdir):
)
+# TODO Re-enable when airflow updates their isort config
+# Reference: https://github.com/apache/airflow/pull/10543#issuecomment-680231216
+@pytest.mark.skip(reason="Airflow isort config currently broken")
def test_airflow(tmpdir):
check_call(
["git", "clone", "--depth", "1", "https://github.com/apache/airflow.git", str(tmpdir)]