clan-cli: Remove set -x from pytest script

This commit is contained in:
Qubasa
2025-02-17 14:10:22 +07:00
parent 52fd912b45
commit bc66f8b7de

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