Skip to content

Commit

Permalink
feat: support custom parameters in integ_test
Browse files Browse the repository at this point in the history
  • Loading branch information
raul-te committed Apr 19, 2023
1 parent 8b80016 commit 4f10d69
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion test/integ-test/integ_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)

0 comments on commit 4f10d69

Please sign in to comment.