Merge pull request #159322 from jonringer/release-python

This commit is contained in:
Martin Weinelt 2022-02-12 12:07:37 +01:00 committed by GitHub
commit 938c5f3314
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -26,4 +26,22 @@ let
[]);
in if res.success then res.value else []
);
in (mapTestOn (packagePython pkgs))
jobs = {
lib-tests = import ../../lib/tests/release.nix { inherit pkgs; };
pkgs-lib-tests = import ../pkgs-lib/tests { inherit pkgs; };
tested = pkgs.releaseTools.aggregate {
name = "python-tested";
meta.description = "Release-critical packages from the python package sets";
constituents = [
jobs.remarshal.x86_64-linux # Used in pkgs.formats helper
jobs.python39Packages.colorama.x86_64-linux # Used in nixos test-driver
jobs.python39Packages.ptpython.x86_64-linux # Used in nixos test-driver
jobs.python39Packages.requests.x86_64-linux # Almost ubiquous package
jobs.python39Packages.sphinx.x86_64-linux # Document creation for many packages
];
};
} // (mapTestOn (packagePython pkgs));
in jobs