Skip to content

Commit

Permalink
Add LassoLarsCV back, but don't run some tests on Python 3.8
Browse files Browse the repository at this point in the history
Signed-off-by: Avi Shinnar <[email protected]>
  • Loading branch information
shinnar committed Aug 23, 2024
1 parent b2fc18e commit c4c6e71
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 5 deletions.
15 changes: 11 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ jobs:
python-version: '3.11'
setup-target: '.[full,test]'
- test-case: test/test_autogen_lib.py
python-version: 3.8
python-version: 3.11
setup-target: '.[test]'
- test-case: test/test_halving_gridsearchcv.py
python-version: 3.8
Expand Down Expand Up @@ -182,7 +182,6 @@ jobs:
test-case:
- test/test_core_classifiers.py
- test/test_core_regressors.py
- test/test_core_transformers.py
- test/test_core_misc.py
- test/test_core_pipeline.py
- test/test_custom_schemas.py
Expand All @@ -192,14 +191,22 @@ jobs:
- test/test_interoperability.py
- test/test_optimizers.py
- test/test_pipeline.py
- test/test_autogen_lib.py
- test/test_relational.py
- test/test_category_encoders.py
python-version: [3.8, 3.9, '3.10', '3.11']
setup-target: ['.[full,test]']
include:
- test-case: test/test_core_transformers.py
python-version: 3.9
setup-target: '.[full,test]'
- test-case: test/test_core_transformers.py
python-version: 3.10
setup-target: '.[full,test]'
- test-case: test/test_core_transformers.py
python-version: 3.11
setup-target: '.[full,test]'
- test-case: test/test_autogen_lib.py
python-version: 3.8
python-version: 3.11
setup-target: '.[test]'
- test-case: test/test_halving_gridsearchcv.py
python-version: 3.8
Expand Down
2 changes: 1 addition & 1 deletion test/test_autogen_lib.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ def load_multi():
"Lasso",
"LassoCV",
"LassoLars",
# "LassoLarsCV",
"LassoLarsCV",
"LassoLarsIC",
"LGBMRegressor",
"NuSVR",
Expand Down

0 comments on commit c4c6e71

Please sign in to comment.