Skip to content
This repository was archived by the owner on Oct 21, 2025. It is now read-only.

Commit 4c085d3

Browse files
refactored testing/base into two files
1 parent 378c5f6 commit 4c085d3

File tree

5 files changed

+2028
-2037
lines changed

5 files changed

+2028
-2037
lines changed

diffxpy/api/test.py

Lines changed: 2 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,2 @@
1-
from diffxpy.testing.base import two_sample
2-
from diffxpy.testing.base import lrt
3-
from diffxpy.testing.base import wald
4-
from diffxpy.testing.base import t_test
5-
from diffxpy.testing.base import rank_test
6-
from diffxpy.testing.base import partition
7-
from diffxpy.testing.base import pairwise
8-
from diffxpy.testing.base import versus_rest
9-
from diffxpy.testing.base import continuous_1d
10-
from diffxpy.testing.base import design_matrix
11-
from diffxpy.testing.base import coef_names
1+
from diffxpy.testing.tests import design_matrix, coef_names, lrt, wald, t_test, rank_test, two_sample, pairwise, \
2+
versus_rest, partition, continuous_1d

diffxpy/enrichment/enrich.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
from ..stats import stats
77
from ..testing import correction
8-
from ..testing.base import _DifferentialExpressionTest
8+
from ..testing.det import _DifferentialExpressionTest
99

1010
logger = logging.getLogger(__name__)
1111

diffxpy/pkg_constants.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
BATCHGLM_OPTIM_ADAGRAD = False
66
BATCHGLM_OPTIM_RMSPROP = False
77
BATCHGLM_OPTIM_NEWTON = False
8-
BATCHGLM_OPTIM_NEWTON_TR = True
8+
BATCHGLM_OPTIM_NEWTON_TR = False
99
BATCHGLM_OPTIM_IRLS = False
1010
BATCHGLM_OPTIM_IRLS_GD = False
1111
BATCHGLM_OPTIM_IRLS_TR = False
12-
BATCHGLM_OPTIM_IRLS_GD_TR = False
13-
BATCHGLM_PROVIDE_BATCHED = False
12+
BATCHGLM_OPTIM_IRLS_GD_TR = True
13+
BATCHGLM_PROVIDE_BATCHED = True

0 commit comments

Comments
 (0)