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

remove iterative from looking-glass test #4424

Merged
merged 2 commits into from
May 17, 2024
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
31 changes: 0 additions & 31 deletions .github/workflows/evalml_main_airflow_performance_tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}"
}'
1 change: 1 addition & 0 deletions docs/source/release_notes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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::
Expand Down
Loading