Hotfix: increase timeout for dbt nightly (#1364) #216
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Aiflow Tests | |
on: | |
push: | |
branches: | |
- master | |
paths: | |
- '.github/workflows/ci-airflow.yml' | |
- 'dags/**' | |
- 'plugins/**' | |
- 'build/requirements-airflow-dev.txt' | |
pull_request: | |
branches: | |
- master | |
paths: | |
- '.github/workflows/ci-airflow.yml' | |
- 'dags/**' | |
- 'plugins/**' | |
- 'build/requirements-airflow-dev.txt' | |
jobs: | |
tests: | |
name: Testing Plugins and DAGs | |
runs-on: ubuntu-20.04 | |
strategy: | |
fail-fast: false | |
steps: | |
- name: checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 1 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: '3.6.12' # This is the python version in the airflow docker image currently used | |
cache: 'pip' # caching pip dependencies | |
cache-dependency-path: 'build/requirements-airflow-dev.txt' | |
- name: Install dependencies | |
run: pip install -r build/requirements-airflow-dev.txt | |
# - name: Run tests | |
- name: Run plugin tests | |
run: pytest plugins dags | |
env: | |
PYTHONPATH: . |