lol

python312Packages.botorch: disable failing test on aarch64-darwin (#352613)

authored by

Gaétan Lepage and committed by
GitHub
157d7e23 0cf8eb98

+12 -6
+4 -3
pkgs/development/python-modules/ax-platform/default.nix
··· 62 62 "--ignore=ax/core/tests/test_utils.py" 63 63 "--ignore=ax/early_stopping/tests/test_strategies.py" 64 64 # broken with sqlalchemy 2 65 + "--ignore=ax/core/tests/test_experiment.py" 65 66 "--ignore=ax/service/tests/test_ax_client.py" 66 67 "--ignore=ax/service/tests/test_scheduler.py" 67 68 "--ignore=ax/service/tests/test_with_db_settings_base.py" ··· 79 80 ]; 80 81 pythonImportsCheck = [ "ax" ]; 81 82 82 - meta = with lib; { 83 + meta = { 83 84 changelog = "https://github.com/facebook/Ax/releases/tag/${version}"; 84 85 description = "Ax is an accessible, general-purpose platform for understanding, managing, deploying, and automating adaptive experiments"; 85 86 homepage = "https://ax.dev/"; 86 - license = licenses.mit; 87 - maintainers = with maintainers; [ veprbl ]; 87 + license = lib.licenses.mit; 88 + maintainers = with lib.maintainers; [ veprbl ]; 88 89 }; 89 90 }
+8 -3
pkgs/development/python-modules/botorch/default.nix
··· 58 58 ++ lib.optionals (stdenv.buildPlatform.system == "x86_64-linux") [ 59 59 # stuck tests on hydra 60 60 "test_moo_predictive_entropy_search" 61 + ] 62 + ++ lib.optionals (stdenv.hostPlatform.isDarwin && stdenv.isAarch64) [ 63 + # Numerical error slightly above threshold 64 + # AssertionError: Tensor-likes are not close! 65 + "test_model_list_gpytorch_model" 61 66 ]; 62 67 63 68 pythonImportsCheck = [ "botorch" ]; ··· 65 70 # needs lots of undisturbed CPU time or prone to getting stuck 66 71 requiredSystemFeatures = [ "big-parallel" ]; 67 72 68 - meta = with lib; { 73 + meta = { 69 74 changelog = "https://github.com/pytorch/botorch/blob/${src.rev}/CHANGELOG.md"; 70 75 description = "Bayesian Optimization in PyTorch"; 71 76 homepage = "https://botorch.org"; 72 - license = licenses.mit; 73 - maintainers = with maintainers; [ veprbl ]; 77 + license = lib.licenses.mit; 78 + maintainers = with lib.maintainers; [ veprbl ]; 74 79 }; 75 80 }