Skip to content

Commit

Permalink
fix: disable failing tests on nix (#241)
Browse files Browse the repository at this point in the history
Signed-off-by: Yuugen <[email protected]>
  • Loading branch information
ImYuugen authored Oct 17, 2024
1 parent a6b84b1 commit dacc6c8
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion packaging/nix/umu-launcher.nix
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,14 @@ python3Packages.buildPythonPackage {
pkgs.scdoc
pkgs.git
pkgs.python3Packages.installer
pkgs.hatch
(pkgs.hatch.overrideAttrs (prev: {
disabledTests = prev.disabledTests ++ [
"test_field_readme"
"test_field_string"
"test_field_complex"
"test_plugin_dependencies_unmet"
];
}))
pkgs.python3Packages.build
];
propagatedBuildInputs = [
Expand Down

0 comments on commit dacc6c8

Please sign in to comment.