mirror of
https://github.com/AikidoSec/safe-chain.git
synced 2026-05-26 12:10:49 +00:00
Log audit stats as verbose, not as information
This commit is contained in:
parent
9901cb8502
commit
a7946377b4
14 changed files with 273 additions and 214 deletions
|
|
@ -31,7 +31,7 @@ describe("E2E: safe-chain CLI python/pip support", () => {
|
|||
const shell = await container.openShell("zsh");
|
||||
// Invoke safe-chain directly with pip3 command
|
||||
const result = await shell.runCommand(
|
||||
"safe-chain pip3 install --break-system-packages requests"
|
||||
"safe-chain pip3 install --break-system-packages requests --safe-chain-logging=verbose"
|
||||
);
|
||||
|
||||
assert.ok(
|
||||
|
|
@ -48,7 +48,7 @@ describe("E2E: safe-chain CLI python/pip support", () => {
|
|||
it("safe-chain python3 -m pip install routes through proxy", async () => {
|
||||
const shell = await container.openShell("zsh");
|
||||
const result = await shell.runCommand(
|
||||
"safe-chain python3 -m pip install --break-system-packages requests"
|
||||
"safe-chain python3 -m pip install --break-system-packages requests --safe-chain-logging=verbose"
|
||||
);
|
||||
|
||||
assert.ok(
|
||||
|
|
@ -59,7 +59,7 @@ describe("E2E: safe-chain CLI python/pip support", () => {
|
|||
|
||||
it("safe-chain python3 script.py bypasses proxy", async () => {
|
||||
const shell = await container.openShell("zsh");
|
||||
|
||||
|
||||
// Create a simple script
|
||||
await shell.runCommand("echo \"print('direct execution')\" > /tmp/test.py");
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue