Skip to content

Commit

Permalink
Run prove on Travis CI with -v option
Browse files Browse the repository at this point in the history
  • Loading branch information
petere committed Mar 3, 2013
1 parent 328ac0f commit 580a4e1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
language: c # whatever
before_install: sudo apt-get update
install: sudo apt-get install -qq --no-install-recommends curl devscripts git libyaml-perl man-db perl
script: make all maintainer-check check && sudo make install && sudo make uninstall
script: make all maintainer-check check PROVEFLAGS=-v && sudo make install && sudo make uninstall
4 changes: 3 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,12 @@ INSTALL_DATA = $(INSTALL) -m 644
INSTALL_SCRIPT = $(INSTALL) -m 755
MKDIR_P = mkdir -p

PROVE = prove

all:

check test:
prove
$(PROVE) $(PROVEFLAGS)

maintainer-check:
$(SHELL) -n pex
Expand Down

0 comments on commit 580a4e1

Please sign in to comment.