fix: remove '-v' in pytest-vm

This commit is contained in:
Alexander Tomokhov 2024-04-17 15:37:28 +04:00
parent 5e93e6499f
commit 29d306d73d
1 changed files with 1 additions and 1 deletions

View File

@ -65,7 +65,7 @@
SCRIPT=$(cat <<EOF
start_all()
machine.succeed("ln -sf $NIXOS_VM_SHARED_DIR_GUEST -T ${vmtest-src-dir} >&2")
machine.succeed("cd ${vmtest-src-dir} && coverage run -m pytest -v $@ >&2")
machine.succeed("cd ${vmtest-src-dir} && coverage run -m pytest $@ >&2")
machine.succeed("cd ${vmtest-src-dir} && coverage report >&2")
EOF
)