Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Quarantine test_backfill_integration in dask executor #32780

Merged
merged 1 commit into from
Jul 23, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
47 changes: 41 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1308,15 +1308,13 @@ jobs:
needs: [build-info, wait-for-ci-images]
env:
RUNS_ON: "${{needs.build-info.outputs.runs-on}}"
PARALLEL_TEST_TYPES: "Quarantined"
TEST_TYPE: "Quarantined"
PR_LABELS: "${{needs.build-info.outputs.pull-request-labels}}"
PYTHON_MAJOR_MINOR_VERSION: "${{needs.build-info.outputs.default-python-version}}"
DEBUG_RESOURCES: "${{needs.build-info.outputs.debug-resources}}"
BACKEND: "sqlite"
BACKEND_VERSION: ""
JOB_ID: "quarantined-${{needs.build-info.outputs.default-python-version}}"
COVERAGE: "${{needs.build-info.outputs.run-coverage}}"
if: needs.build-info.outputs.run-tests == 'true'
if: needs.build-info.outputs.run-tests == 'true' && needs.build-info.outputs.runs-on == 'self-hosted'
steps:
- name: Cleanup repo
shell: bash
Expand All @@ -1329,8 +1327,45 @@ jobs:
Prepare breeze & CI image: ${{needs.build-info.outputs.default-python-version}}:${{env.IMAGE_TAG}}
uses: ./.github/actions/prepare_breeze_and_image
- name: >
Tests: ${{needs.build-info.outputs.default-python-version}}:Quarantined
run: breeze testing tests --run-in-parallel || true
Tests: postgres:${{needs.build-info.outputs.default-python-version}}:Quarantined
run: breeze testing tests || true
env:
BACKEND: "postgres"
BACKEND_VERSION: "11"
POSTGRES_VERSION: "11"
- name: >
Cleaning up ${{needs.build-info.outputs.default-python-version}}:Quarantined
run: breeze down
- name: >
Tests: mysql:${{needs.build-info.outputs.default-python-version}}:Quarantined
run: breeze testing tests || true
env:
BACKEND: "mysql"
BACKEND_VERSION: ${{needs.build-info.outputs.default-mysql-version}}
MYSQL_VERSION: ${{needs.build-info.outputs.default-mysql-version}}
- name: >
Cleaning up ${{needs.build-info.outputs.default-python-version}}:Quarantined
run: breeze down
- name: >
Tests: mssql:${{needs.build-info.outputs.default-python-version}}:Quarantined
run: breeze testing tests || true
env:
BACKEND: "mssql"
BACKEND_VERSION: ${{needs.build-info.outputs.default-mssql-version}}
MSSQL_VERSION: ${{needs.build-info.outputs.default-mssql-version}}
- name: >
Cleaning up ${{needs.build-info.outputs.default-python-version}}:Quarantined
run: breeze down
- name: >
Tests: mssql:${{needs.build-info.outputs.default-python-version}}:Quarantined
run: breeze testing tests || true
env:
BACKEND: "sqlite"
BACKEND_VERSION: ""
MSSQL_VERSION: ""
- name: >
Cleaning up ${{needs.build-info.outputs.default-python-version}}:Quarantined
run: breeze down
- name: >
Post Tests: ${{needs.build-info.outputs.default-python-version}}:Quarantined"
uses: ./.github/actions/post_tests
Expand Down
2 changes: 2 additions & 0 deletions dev/breeze/src/airflow_breeze/commands/testing_commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -331,12 +331,14 @@ def run_tests_in_parallel(
"should be run: `Providers[airbyte,http]` or "
"excluded from the full test suite: `Providers[-amazon,google]`",
default="All",
envvar="TEST_TYPE",
type=NotVerifiedBetterChoice(ALLOWED_TEST_TYPE_CHOICES),
)
@click.option(
"--test-timeout",
help="Test timeout. Set the pytest setup, execution and teardown timeouts to this value",
default=60,
envvar="TEST_TIMEOUT",
type=IntRange(min=0),
show_default=True,
)
Expand Down
4 changes: 2 additions & 2 deletions images/breeze/output-commands-hash.txt
Original file line number Diff line number Diff line change
Expand Up @@ -66,5 +66,5 @@ static-checks:f9ec0d7edaba84180403d95469d94ea0
testing:docker-compose-tests:0c810047fc66a0cfe91119e2d08b3507
testing:helm-tests:8e491da2e01ebd815322c37562059d77
testing:integration-tests:486e4d91449ecdb7630ef2a470d705a3
testing:tests:e18fbd845ca5783879244bf0f9f9c51e
testing:f360a66d2b1b4c39880117ae6166007f
testing:tests:3c202e65824e405269e78f58936980e0
testing:68a089bc30e0e60f834f205df1e9f086
Loading