Skip to content

Commit

Permalink
bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
venkatajagannath committed Jul 23, 2024
1 parent 7a2a9dc commit 29df2a1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.11" # You can adjust this version as needed
python-version: "3.11"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand Down
2 changes: 1 addition & 1 deletion tests/test_dag_example.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
from airflow.utils.session import create_session

# Correctly construct the example DAGs directory path
EXAMPLE_DAGS_DIR = Path(__file__).parent.parent.parent / "example_dags"
EXAMPLE_DAGS_DIR = Path(__file__).parent.parent / "example_dags"
print(f"EXAMPLE_DAGS_DIR: {EXAMPLE_DAGS_DIR}")


Expand Down

0 comments on commit 29df2a1

Please sign in to comment.