diff options
author | Tharre <tharre3@gmail.com> | 2015-01-25 20:38:20 +0100 |
---|---|---|
committer | Tharre <tharre3@gmail.com> | 2015-01-25 20:41:16 +0100 |
commit | 5322817d1c382d5ba377be0080bd4c5da525cd2f (patch) | |
tree | a6053e4c13e72ed29f6441e7626b5d751d79102a /.travis.yml | |
parent | c4a2f0dec7bd7d3f50115bb88467a0841c91d957 (diff) | |
download | redo-5322817d1c382d5ba377be0080bd4c5da525cd2f.tar.gz redo-5322817d1c382d5ba377be0080bd4c5da525cd2f.tar.xz redo-5322817d1c382d5ba377be0080bd4c5da525cd2f.zip |
Add testing framework `bats`, this fixes #6
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index 82f52cd..2f50da2 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,4 +2,8 @@ language: c compiler: - gcc - clang -script: ./autogen.sh && ./configure && ./build.sh +script: ./autogen.sh && ./configure && ./build.sh && bats test/ +before_install: + - sudo add-apt-repository ppa:duggan/bats --yes + - sudo apt-get update -qq + - sudo apt-get install -qq bats |