From f19e622fcb1281fddc8a34e49821142b1b277e01 Mon Sep 17 00:00:00 2001 From: Ivan Trubach Date: Thu, 27 Mar 2025 03:22:15 +0300 Subject: [PATCH] python3Packages.pulumi: do not write junit report --- pkgs/development/python-modules/pulumi/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/pulumi/default.nix b/pkgs/development/python-modules/pulumi/default.nix index c05401d20f74..b0bf59d45c62 100644 --- a/pkgs/development/python-modules/pulumi/default.nix +++ b/pkgs/development/python-modules/pulumi/default.nix @@ -70,9 +70,9 @@ buildPythonPackage { # https://github.com/pulumi/pulumi/blob/0acaf8060640fdd892abccf1ce7435cd6aae69fe/sdk/python/scripts/test_fast.sh#L16 installCheckPhase = '' runHook preInstallCheck - ${python.executable} -m pytest --ignore=lib/test/automation lib/test + ${python.executable} -m pytest --junit-xml= --ignore=lib/test/automation lib/test pushd lib/test_with_mocks - ${python.executable} -m pytest + ${python.executable} -m pytest --junit-xml= popd runHook postInstallCheck '';