clan-cli: Remove set -x from pytest script

This commit is contained in:
Qubasa
2025-02-17 14:10:22 +07:00
parent a5e32f9b6d
commit 6070219b1a

View File

@@ -130,7 +130,7 @@ pythonRuntime.pkgs.buildPythonApplication {
clan-pytest-without-core = clan-pytest-without-core =
runCommand "clan-pytest-without-core" { nativeBuildInputs = testDependencies; } runCommand "clan-pytest-without-core" { nativeBuildInputs = testDependencies; }
'' ''
set -ux -o pipefail set -u -o pipefail
cp -r ${source} ./src cp -r ${source} ./src
chmod +w -R ./src chmod +w -R ./src
cd ./src cd ./src
@@ -165,7 +165,7 @@ pythonRuntime.pkgs.buildPythonApplication {
}; };
} }
'' ''
set -ux -o pipefail set -u -o pipefail
cp -r ${source} ./src cp -r ${source} ./src
chmod +w -R ./src chmod +w -R ./src
cd ./src cd ./src