From 6e62139b37e06f7f2dcca21ff7a1459d9ab4e694 Mon Sep 17 00:00:00 2001 From: jaimergp Date: Tue, 7 Jan 2025 08:46:22 +0000 Subject: [PATCH] Remove unnecessary libmamba tests --- tests/test_solvers.py | 28 ---------------------------- 1 file changed, 28 deletions(-) diff --git a/tests/test_solvers.py b/tests/test_solvers.py index cb5638f..f913b8a 100644 --- a/tests/test_solvers.py +++ b/tests/test_solvers.py @@ -17,31 +17,3 @@ class TestClassicSolver(SolverTests): @property def solver_class(self) -> type[Solver]: return ClassicSolver - - -class TestLibMambaSolver(SolverTests): - @property - def solver_class(self) -> type[Solver]: - from conda_libmamba_solver.solver import LibMambaSolver - - return LibMambaSolver - - @property - def tests_to_skip(self): - return { - "conda-libmamba-solver does not support features": [ - "test_iopro_mkl", - "test_iopro_nomkl", - "test_mkl", - "test_accelerate", - "test_scipy_mkl", - "test_pseudo_boolean", - "test_no_features", - "test_surplus_features_1", - "test_surplus_features_2", - "test_remove", - # this one below only fails reliably on windows; - # it passes Linux on CI, but not locally? - "test_unintentional_feature_downgrade", - ], - }