Skip to content

Commit

Permalink
Don't test importing egon.data.airflow.tasks
Browse files Browse the repository at this point in the history
The module doesn't exist, so the test can't succeed.
  • Loading branch information
gnn committed Nov 26, 2021
1 parent c78e0ce commit 43ce8a5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_egon-data.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@ def test_airflow():
assert result.output == ""


def test_pipeline_and_tasks_importability():
def test_pipeline_importability():
error = None
for m in ["egon.data.airflow.dags.pipeline", "egon.data.airflow.tasks"]:
for m in ["egon.data.airflow.dags.pipeline"]:
try:
import_module(m)
except Exception as e:
Expand Down

0 comments on commit 43ce8a5

Please sign in to comment.