Skip to content

Commit

Permalink
remove is_composer arg from composer tests
Browse files Browse the repository at this point in the history
  • Loading branch information
erikvatt committed Oct 31, 2023
1 parent 7a530f1 commit 1df4428
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions tests-integration/composer.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
with DAG('DataverkAirflowComposer', start_date=datetime(2023, 2, 15), schedule=None) as dag:
py_op = python_operator(
dag = dag,
is_composer=True,
name = "python-op",
script_path = "tests-integration/notebooks/script.py",
requirements_path="tests-integration/notebooks/requirements.txt",
Expand All @@ -22,7 +21,6 @@

nb_op = notebook_operator(
dag = dag,
is_composer=True,
name = "nb-op",
nb_path = "tests-integration/notebooks/mynb.ipynb",
requirements_path="tests-integration/notebooks/requirements.txt",
Expand All @@ -32,7 +30,6 @@

quarto_op = quarto_operator(
dag=dag,
is_composer=True,
name="quarto-op",
quarto={
"path": "tests-integration/notebooks/quarto.ipynb",
Expand Down

0 comments on commit 1df4428

Please sign in to comment.