From c4c6e719a1054cbe7352727be8c6fae25f4e1900 Mon Sep 17 00:00:00 2001 From: Avi Shinnar Date: Fri, 23 Aug 2024 13:05:24 -0400 Subject: [PATCH] Add LassoLarsCV back, but don't run some tests on Python 3.8 Signed-off-by: Avi Shinnar --- .github/workflows/build.yml | 15 +++++++++++---- test/test_autogen_lib.py | 2 +- 2 files changed, 12 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index c151f2ced..4dc6d19c2 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -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 @@ -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 @@ -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 diff --git a/test/test_autogen_lib.py b/test/test_autogen_lib.py index 2c56245b3..3596e1d40 100644 --- a/test/test_autogen_lib.py +++ b/test/test_autogen_lib.py @@ -96,7 +96,7 @@ def load_multi(): "Lasso", "LassoCV", "LassoLars", - # "LassoLarsCV", + "LassoLarsCV", "LassoLarsIC", "LGBMRegressor", "NuSVR",