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

Windows nightlies fix #4452

Merged
merged 2 commits into from
Jun 13, 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
6 changes: 3 additions & 3 deletions .github/workflows/windows_nightlies.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
fail-fast: false
matrix:
python_version: ['3.9', '3.10', '3.11']
command: ['git-test-automl', 'git-test-modelunderstanding', 'git-test-other', 'git-test-parallel', 'git-test-prophet']
command: ['git-test-automl', 'git-test-modelunderstanding', 'git-test-other-no-parallel-cpu', 'git-test-parallel', 'git-test-prophet-no-parallel-cpu']
steps:
- name: Download Miniconda
shell: pwsh
Expand Down Expand Up @@ -57,7 +57,7 @@ jobs:
. $env:USERPROFILE\Miniconda3\shell\condabin\conda-hook.ps1
conda activate curr_py
conda install numba -q -y
- if: ${{ matrix.command == 'git-test-prophet' }}
- if: ${{ matrix.command == 'git-test-prophet-no-parallel-cpu' }}
name: Install EvalML with test requirements and prophet
shell: pwsh
run: |
Expand All @@ -67,7 +67,7 @@ jobs:
python -m pip install .[test]
python -m pip install .[prophet]
pip freeze
- if: ${{ matrix.command != 'git-test-prophet' }}
- if: ${{ matrix.command != 'git-test-prophet-no-parallel-cpu' }}
name: Install EvalML with test requirements
shell: pwsh
run: |
Expand Down
1 change: 1 addition & 0 deletions docs/source/release_notes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ Release Notes
**Future Releases**
* Enhancements
* Fixes
* Switched windows nightly tests to run serially instead of in parallel :pr:`4452`
* Changes
* Documentation Changes
* Testing Changes
Expand Down
Loading