Respect catchup flag during full refresh operations for materialized views
#210
Workflow file for this run
This file contains hidden or 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: "test_cloud" | |
| on: # yamllint disable-line rule:truthy | |
| pull_request: | |
| branches: | |
| - '*_cloud' | |
| workflow_dispatch: | |
| schedule: | |
| - cron: '0 2 * * *' # Nightly run at 2:00 AM UTC | |
| jobs: | |
| cloud_smt_tests: | |
| name: ClickHouse Cloud SharedMergeTree Tests | |
| runs-on: ubuntu-latest | |
| env: | |
| PYTHONPATH: dbt | |
| DBT_CH_TEST_HOST: ${{ secrets.INTEGRATIONS_TEAM_TESTS_CLOUD_HOST_SMT }} | |
| DBT_CH_TEST_PASSWORD: ${{ secrets.INTEGRATIONS_TEAM_TESTS_CLOUD_PASSWORD_SMT }} | |
| DBT_CH_TEST_CLUSTER_MODE: true | |
| DBT_CH_TEST_CLOUD: true | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v3 | |
| - name: Setup Python 3.11 | |
| uses: actions/setup-python@v4 | |
| with: | |
| python-version: '3.11' | |
| - name: Install requirements | |
| run: pip3 install . -r dev_requirements.txt | |
| - name: Run HTTP tests | |
| env: | |
| DBT_CH_TEST_PORT: 8443 | |
| run: pytest tests | |
| - name: Run Native tests | |
| env: | |
| DBT_CH_TEST_PORT: 9440 | |
| run: pytest tests |