Browse Source

Workaround for rebar/rebar#247.

As `rebar eunit` doesn't compile .yrl files,
we need to make sure those are already compiled
when running the eunit tests.
Andreas Stenius 11 years ago
parent
commit
cf62dbe5ec
1 changed files with 1 additions and 1 deletions
  1. 1 1
      .travis.yml

+ 1 - 1
.travis.yml

@@ -8,4 +8,4 @@ otp_release:
 
 # since Travis is naughty and calls rebar get-deps behind our backs,
 # we'll have to clean it up and build merl our selves..
-script: "make -C deps/merl && make tests"
+script: "make -C deps/merl && make all tests"