Merge pull request #5 from great-expectations/m/CORE-721/integration-… #4
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: "Integration Tests" | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
jobs: | |
integration-test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.12" | |
- name: Upgrade pip | |
run: python -m pip install --upgrade pip | |
- name: Install Library | |
run: pip install . | |
- name: Install Dependencies | |
run: pip install -r test-requirements.txt | |
- name: Setup | |
run: | | |
airflow db reset -y | |
airflow db init | |
- name: Run Unit Tests | |
run: pytest -vvv tests/integration |