From 9d569cf16fbbcaf6d440fc036cf9f42b3bfa7ad2 Mon Sep 17 00:00:00 2001 From: MichaelFu512 Date: Fri, 17 May 2024 11:43:38 -0700 Subject: [PATCH 1/2] remove iterative --- ...evalml_main_airflow_performance_tests.yaml | 31 ------------------- 1 file changed, 31 deletions(-) diff --git a/.github/workflows/evalml_main_airflow_performance_tests.yaml b/.github/workflows/evalml_main_airflow_performance_tests.yaml index b04ae7eb1c..0fcd92e4ee 100644 --- a/.github/workflows/evalml_main_airflow_performance_tests.yaml +++ b/.github/workflows/evalml_main_airflow_performance_tests.yaml @@ -54,34 +54,3 @@ jobs: "logical_date": "${{ env.DEFAULT_TIMESTAMP }}", "dag_run_id": "api_evalml_automl_run_tests_generate_report_default_${{ env.DEFAULT_TIMESTAMP }}" }' - - name: Generate iterative ISO timestamp - run: | - echo "ITERATIVE_TIMESTAMP=$(date +"%Y-%m-%dT%H:%M:%S.%3NZ")" >> $GITHUB_ENV - - name: Run iterative algorithm performance test - id: current_iterative - run: | - curl --location --request POST '${{ secrets.AIRFLOW_BASE_URL }}dags/evalml_automl_run_tests_generate_report/dagRuns' \ - -u '${{ secrets.AIRFLOW_USER }}:${{ secrets.AIRFLOW_PASS }}' \ - --header 'Content-Type: application/json' \ - --data-raw '{ - "conf": { - "description": "${{ env.CURRENT_HASH }}_iterative )", - "n_trials": 1, - "pytest_args": { - "automl-algo": "iterative", - "ensembling": false, - "max-batches": 0, - "max-iterations": 0, - "holdout-size": 0.5, - "pred-vs-actual": false - }, - "python_version": "3.9", - "scenarios_yaml": "release.yaml", - "evalml_branch_previous": "${{ env.PREVIOUS_HASH }}", - "evalml_branch_new": "${{ env.CURRENT_HASH }}", - "username": "${{ secrets.AIRFLOW_USER }}", - "author": "${{ github.event.head_commit.author.name }}" - }, - "logical_date": "${{ env.ITERATIVE_TIMESTAMP }}", - "dag_run_id": "api_evalml_automl_run_tests_generate_report_iterative_${{ env.ITERATIVE_TIMESTAMP }}" - }' From 52e5e99fca824c7e3bfe76143d83e03418b3ea50 Mon Sep 17 00:00:00 2001 From: MichaelFu512 Date: Fri, 17 May 2024 11:44:38 -0700 Subject: [PATCH 2/2] release notes --- docs/source/release_notes.rst | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/source/release_notes.rst b/docs/source/release_notes.rst index c64251c024..69dcc41a21 100644 --- a/docs/source/release_notes.rst +++ b/docs/source/release_notes.rst @@ -9,6 +9,7 @@ Release Notes * Documentation Changes * Testing Changes * Run airflow tests in Python 3.9 :pr:`4391` + * Remove iterative test from airflow runs :pr:`4424` * Update GH actions to improve handling of potentially unsafe variables :pr:`4417` .. warning::