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

Fix Github Actions to kick off EvalML and Featuretools unit tests #1795

Merged
merged 4 commits into from
Dec 12, 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
4 changes: 2 additions & 2 deletions .github/workflows/kickoff_featuretools_evalml_unit_tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Run workflow for Featuretools unit tests
run: gh workflow run "Unit Tests - Featuretools with Woodwork main branch" --repo "alteryx/featuretools"
run: gh workflow run tests_with_woodwork_main_branch.yaml --repo "alteryx/featuretools"
env:
GITHUB_TOKEN: ${{ secrets.REPO_SCOPED_TOKEN }}
- name: Run workflow for EvalML unit tests
run: gh workflow run "Unit Tests - EvalML with Woodwork main branch" --repo "alteryx/evalml"
run: gh workflow run unit_tests_with_woodwork_main_branch.yaml --repo "alteryx/evalml"
env:
GITHUB_TOKEN: ${{ secrets.REPO_SCOPED_TOKEN }}
1 change: 1 addition & 0 deletions docs/source/release_notes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ Future Release
* Enhancements
* Fixes
* Removed warning due to deprecated ``infer_datetime_format`` argument in pandas (:pr:`1785`)
* Fix GitHub Actions to kick off EvalML and Featuretools unit tests (:pr:`1795`)
* Changes
* Temporarily restrict pyarrow version due to serialization issues (:pr:`1768`)
* Update pandas categorical type call and remove black with ruff formatter (:pr:`1794`)
Expand Down