Skip to content

Commit

Permalink
working with constrains for tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jrybicki-jsc committed Jan 22, 2024
1 parent c29b7b7 commit a988bec
Show file tree
Hide file tree
Showing 4 changed files with 695 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/integration.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
if [ -f requirements.txt ]; then pip install -r requirements.txt --constraint constraints-3.9.txt ; fi
airflow db init
- name: Verify airflow
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
if [ -f requirements.txt ]; then pip install -r requirements.txt --constraint constraints-3.9.txt; fi
airflow db init
- name: Verify airflow
run: |
Expand Down
Loading

0 comments on commit a988bec

Please sign in to comment.