Skip to content

Commit

Permalink
Use absolute path for oonipipeline import
Browse files Browse the repository at this point in the history
  • Loading branch information
hellais committed Dec 20, 2024
1 parent 53fcf23 commit 2deffbb
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion dags/dags.py → dags/pipeline.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import pathlib
import datetime
from typing import List

Expand Down Expand Up @@ -43,7 +44,7 @@ def run_make_analysis(
make_analysis_in_a_day(params)


REQUIREMENTS = ["./oonipipeline"]
REQUIREMENTS = [str((pathlib.Path(__file__).parent.parent / "oonipipeline").absolute())]

with DAG(
dag_id="batch_measurement_processing",
Expand Down

0 comments on commit 2deffbb

Please sign in to comment.