Merge master into staging-next
This commit is contained in:
@@ -1,5 +1,6 @@
|
||||
{
|
||||
lib,
|
||||
stdenv,
|
||||
buildPythonPackage,
|
||||
fetchFromGitHub,
|
||||
gpytorch,
|
||||
@@ -46,10 +47,24 @@ buildPythonPackage rec {
|
||||
|
||||
nativeCheckInputs = [ pytestCheckHook ];
|
||||
|
||||
disabledTests = [ "test_all_cases_covered" ];
|
||||
pytestFlagsArray = [
|
||||
# tests tend to get stuck on busy hosts, increase verbosity to find out
|
||||
# which specific tests get stuck
|
||||
"-vvv"
|
||||
];
|
||||
|
||||
disabledTests =
|
||||
[ "test_all_cases_covered" ]
|
||||
++ lib.optionals (stdenv.buildPlatform.system == "x86_64-linux") [
|
||||
# stuck tests on hydra
|
||||
"test_moo_predictive_entropy_search"
|
||||
];
|
||||
|
||||
pythonImportsCheck = [ "botorch" ];
|
||||
|
||||
# needs lots of undisturbed CPU time or prone to getting stuck
|
||||
requiredSystemFeatures = [ "big-parallel" ];
|
||||
|
||||
meta = with lib; {
|
||||
changelog = "https://github.com/pytorch/botorch/blob/${src.rev}/CHANGELOG.md";
|
||||
description = "Bayesian Optimization in PyTorch";
|
||||
|
||||
@@ -15,7 +15,16 @@ buildGoModule rec {
|
||||
subPackages = [
|
||||
"cmd/mimir"
|
||||
"cmd/mimirtool"
|
||||
];
|
||||
] ++ (map (pathName: "tools/${pathName}") [
|
||||
"compaction-planner"
|
||||
"copyblocks"
|
||||
"copyprefix"
|
||||
"delete-objects"
|
||||
"list-deduplicated-blocks"
|
||||
"listblocks"
|
||||
"markblocks"
|
||||
"undelete-blocks"
|
||||
]);
|
||||
|
||||
passthru = {
|
||||
updateScript = nix-update-script {
|
||||
|
||||
Reference in New Issue
Block a user