Skip to content

Commit eef3119

Browse files
authored
Merge branch 'main' into port-dirichlet-mn
2 parents 48cd55d + 125256f commit eef3119

File tree

12 files changed

+783
-492
lines changed

12 files changed

+783
-492
lines changed

.coveragerc

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,3 @@
22
omit =
33
# exclude tests files from coverage calculation
44
pymc3/tests/test_*.py
5-
pymc3/examples/*

.github/workflows/pytest.yml

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,12 @@ jobs:
3434
--ignore=pymc3/tests/test_model_graph.py
3535
--ignore=pymc3/tests/test_modelcontext.py
3636
--ignore=pymc3/tests/test_parallel_sampling.py
37+
--ignore=pymc3/tests/test_posteriors.py
38+
--ignore=pymc3/tests/test_sampling.py
3739
--ignore=pymc3/tests/test_profile.py
3840
--ignore=pymc3/tests/test_step.py
3941
--ignore=pymc3/tests/test_tuning.py
42+
--ignore=pymc3/tests/test_transforms.py
4043
--ignore=pymc3/tests/test_types.py
4144
--ignore=pymc3/tests/test_variational_inference.py
4245
--ignore=pymc3/tests/test_sampling_jax.py
@@ -57,25 +60,35 @@ jobs:
5760
--ignore=pymc3/tests/test_distributions_random.py
5861
--ignore=pymc3/tests/test_idata_conversion.py
5962
63+
- pymc3/tests/test_distributions.py
64+
6065
- |
6166
pymc3/tests/test_modelcontext.py
6267
pymc3/tests/test_dist_math.py
6368
pymc3/tests/test_minibatches.py
6469
pymc3/tests/test_pickling.py
6570
pymc3/tests/test_plots.py
6671
pymc3/tests/test_updates.py
72+
pymc3/tests/test_transforms.py
73+
74+
- |
75+
pymc3/tests/test_parallel_sampling.py
76+
pymc3/tests/test_sampling.py
77+
pymc3/tests/test_tuning.py
78+
pymc3/tests/test_posteriors.py
6779
6880
- |
6981
pymc3/tests/test_idata_conversion.py
70-
pymc3/tests/test_distributions.py
7182
pymc3/tests/test_distributions_random.py
83+
pymc3/tests/test_distributions_timeseries.py
7284
pymc3/tests/test_examples.py
7385
pymc3/tests/test_gp.py
7486
pymc3/tests/test_model.py
7587
pymc3/tests/test_model_func.py
7688
pymc3/tests/test_model_graph.py
7789
pymc3/tests/test_ode.py
7890
pymc3/tests/test_posdef_sym.py
91+
pymc3/tests/test_profile.py
7992
pymc3/tests/test_quadpotential.py
8093
pymc3/tests/test_shape_handling.py
8194
pymc3/tests/test_step.py
@@ -140,8 +153,11 @@ jobs:
140153
test-subset:
141154
- |
142155
pymc3/tests/test_distributions_random.py
156+
pymc3/tests/test_distributions_timeseries.py
143157
- |
158+
pymc3/tests/test_parallel_sampling.py
144159
pymc3/tests/test_sampling.py
160+
pymc3/tests/test_tuning.py
145161
pymc3/tests/test_shared.py
146162
- |
147163
pymc3/tests/test_gp.py
@@ -152,6 +168,7 @@ jobs:
152168
pymc3/tests/test_modelcontext.py
153169
pymc3/tests/test_model_graph.py
154170
pymc3/tests/test_pickling.py
171+
pymc3/tests/test_profile.py
155172
156173
fail-fast: false
157174
runs-on: ${{ matrix.os }}

.codecov.yml renamed to codecov.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
codecov:
22
require_ci_to_pass: no
33
notify:
4-
after_n_builds: 16
4+
after_n_builds: 6
55

66
coverage:
77
precision: 2

0 commit comments

Comments
 (0)