File tree Expand file tree Collapse file tree 2 files changed +1
-31
lines changed Expand file tree Collapse file tree 2 files changed +1
-31
lines changed Original file line number Diff line number Diff line change 54
54
"logical_date": "${{ env.DEFAULT_TIMESTAMP }}",
55
55
"dag_run_id": "api_evalml_automl_run_tests_generate_report_default_${{ env.DEFAULT_TIMESTAMP }}"
56
56
}'
57
- - name : Generate iterative ISO timestamp
58
- run : |
59
- echo "ITERATIVE_TIMESTAMP=$(date +"%Y-%m-%dT%H:%M:%S.%3NZ")" >> $GITHUB_ENV
60
- - name : Run iterative algorithm performance test
61
- id : current_iterative
62
- run : |
63
- curl --location --request POST '${{ secrets.AIRFLOW_BASE_URL }}dags/evalml_automl_run_tests_generate_report/dagRuns' \
64
- -u '${{ secrets.AIRFLOW_USER }}:${{ secrets.AIRFLOW_PASS }}' \
65
- --header 'Content-Type: application/json' \
66
- --data-raw '{
67
- "conf": {
68
- "description": "${{ env.CURRENT_HASH }}_iterative )",
69
- "n_trials": 1,
70
- "pytest_args": {
71
- "automl-algo": "iterative",
72
- "ensembling": false,
73
- "max-batches": 0,
74
- "max-iterations": 0,
75
- "holdout-size": 0.5,
76
- "pred-vs-actual": false
77
- },
78
- "python_version": "3.9",
79
- "scenarios_yaml": "release.yaml",
80
- "evalml_branch_previous": "${{ env.PREVIOUS_HASH }}",
81
- "evalml_branch_new": "${{ env.CURRENT_HASH }}",
82
- "username": "${{ secrets.AIRFLOW_USER }}",
83
- "author": "${{ github.event.head_commit.author.name }}"
84
- },
85
- "logical_date": "${{ env.ITERATIVE_TIMESTAMP }}",
86
- "dag_run_id": "api_evalml_automl_run_tests_generate_report_iterative_${{ env.ITERATIVE_TIMESTAMP }}"
87
- }'
Original file line number Diff line number Diff line change @@ -9,6 +9,7 @@ Release Notes
9
9
* Documentation Changes
10
10
* Testing Changes
11
11
* Run airflow tests in Python 3.9 :pr: `4391 `
12
+ * Remove iterative test from airflow runs :pr: `4424 `
12
13
* Update GH actions to improve handling of potentially unsafe variables :pr: `4417 `
13
14
14
15
.. warning ::
You can’t perform that action at this time.
0 commit comments