poetry2nix/tests/mutmut/default.nix
Victor Engmark 58ecdc0365 test: Verify mutmut install
Requires #1084 to be fixed first.
2023-03-28 08:19:34 +13:00

9 lines
165 B
Nix

{ poetry2nix, runCommand }:
let
env = poetry2nix.mkPoetryEnv {
projectDir = ./.;
};
in
runCommand "mutmut-test" { } ''
${env}/bin/mutmut version > $out
''