Skip to content

Commit

Permalink
Merge pull request #67 from GanjelaMJ98/MG-4136_fix_0
Browse files Browse the repository at this point in the history
refactor: update poetry 1.2.2 and fix CI
  • Loading branch information
ikanashov committed May 18, 2023
2 parents 691811c + 14c08e0 commit d9840df
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 12 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/data-detecitve-airflow-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [ 3.9 ]
poetry-version: [ 1.1.13 ]
python-version: [ '3.9' ]
poetry-version: [ '1.2.2' ]
os: [ ubuntu-latest ]
runs-on: ${{ matrix.os }}
steps:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/data-detective-airflow-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [ 3.9, 3.10 ]
poetry-version: [ 1.1.13 ]
python-version: [ '3.9', '3.10' ]
poetry-version: [ '1.2.2']
os: [ ubuntu-latest ]
runs-on: ${{ matrix.os }}
steps:
Expand Down
18 changes: 10 additions & 8 deletions data-detective-airflow/docker-compose.tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,16 @@ x-airflow: &airflow
build:
context: .
target: dev
environment:
- AIRFLOW__DATABASE__SQL_ALCHEMY_CONN=postgresql+psycopg2://${META_USER}:${META_PASS}@metadb:5432/${META_USER}
- AIRFLOW__CORE__EXECUTOR=LocalExecutor
- AIRFLOW__WEBSERVER__SECRET_KEY=${SECRET_KEY}
- AIRFLOW__DATABASE__LOAD_DEFAULT_CONNECTIONS=False
- AIRFLOW__CORE__LOAD_EXAMPLES=False
- PYTHON_VERSION=${PYTHON_VERSION}
- POETRY_VERSION=${POETRY_VERSION}
args:
AIRFLOW__DATABASE__SQL_ALCHEMY_CONN: postgresql+psycopg2://${META_USER}:${META_PASS}@metadb:5432/${META_USER}
AIRFLOW__CORE__EXECUTOR: LocalExecutor
AIRFLOW__WEBSERVER__SECRET_KEY: ${SECRET_KEY}
AIRFLOW__DATABASE__LOAD_DEFAULT_CONNECTIONS: 'false'
AIRFLOW__CORE__LOAD_EXAMPLES: 'false'
PYTHON_VERSION: ${PYTHON_VERSION}
POETRY_VERSION: ${POETRY_VERSION}
env_file:
- .env

services:
ssh_service:
Expand Down

0 comments on commit d9840df

Please sign in to comment.