diff options
| -rw-r--r-- | Makefile | 2 | ||||
| -rwxr-xr-x | test/integ-test/integ_test.py | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -20,7 +20,7 @@ docs: shoelaces.8 test: fmt $(GO) test -v $(pkgs) && \ - ./test/integ-test/integ_test.py + ./test/integ-test/integ_test.py -vv .PHONY: all clean docs diff --git a/test/integ-test/integ_test.py b/test/integ-test/integ_test.py index 188017d..fe3899e 100755 --- a/test/integ-test/integ_test.py +++ b/test/integ-test/integ_test.py @@ -214,4 +214,4 @@ def test_template_variables_list(shoelaces_instance, script, env, vars): if __name__ == "__main__": - pytest.main(args=['-v'], plugins=None) + pytest.main(args=sys.argv[1:], plugins=None) |
