fix: remove '-v' in pytest-vm #111

Open
alexoundos wants to merge 1 commits from pytest-no-v into master
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
)