Skip to content

Commit

Permalink
Don't run/test example projects, but do run the test projects.
Browse files Browse the repository at this point in the history
  • Loading branch information
s-ludwig committed Mar 11, 2014
1 parent 1fa8aae commit b6fa2f4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@ install:
- sudo tar -C /usr/local/bin -zxf ${DUB}.tar.gz

script:
- dub --config=unittest --build=unittest
- dub test
- for ex in `\ls -1 examples/`; do (echo "[INFO] Building example $ex"; cd examples/$ex && dub build) || break; done
- for ex in `cat examples/.travis.run`; do (echo "[INFO] Running example $ex"; cd examples/$ex && dub test) || break; done
- for ex in `\ls -1 tests/`; do (echo "[INFO] Running test $ex"; cd tests/$ex && dub) || break; done

0 comments on commit b6fa2f4

Please sign in to comment.