File tree Expand file tree Collapse file tree 1 file changed +17
-6
lines changed
pkgs/development/python-modules/blackjax Expand file tree Collapse file tree 1 file changed +17
-6
lines changed Original file line number Diff line number Diff line change @@ -49,17 +49,28 @@ buildPythonPackage rec {
4949 pytest-xdist
5050 ] ;
5151
52- disabledTestPaths =
53- [ "tests/test_benchmarks.py" ]
54- ++ lib . optionals ( stdenv . hostPlatform . isLinux && stdenv . hostPlatform . isAarch64 ) [
55- # Assertion errors on numerical values
56- "tests/mcmc/test_integrators.py"
57- ] ;
52+ disabledTestPaths = [
53+ "tests/test_benchmarks.py"
54+
55+ # Assertion errors on numerical values
56+ "tests/mcmc/test_integrators.py"
57+ ] ;
5858
5959 disabledTests =
6060 [
6161 # too slow
6262 "test_adaptive_tempered_smc"
63+
64+ # AssertionError on numerical values
65+ "test_barker"
66+ "test_mclmc"
67+ "test_mcse4"
68+ "test_normal_univariate"
69+ "test_nuts__with_device"
70+ "test_nuts__with_jit"
71+ "test_nuts__without_device"
72+ "test_nuts__without_jit"
73+ "test_smc_waste_free__with_jit"
6374 ]
6475 ++ lib . optionals ( stdenv . hostPlatform . isLinux && stdenv . hostPlatform . isAarch64 ) [
6576 # Numerical test (AssertionError)
You can’t perform that action at this time.
0 commit comments