middleclass/.travis.yml

28 lines
450 B
YAML
Raw Normal View History

language: python
sudo: false
2013-01-02 00:51:09 +00:00
env:
- LUA="lua=5.1"
- LUA="lua=5.2"
- LUA="lua=5.3"
- LUA="luajit=2.0"
- LUA="luajit=2.1"
2013-12-06 20:28:31 +00:00
before_install:
- pip install hererocks
- hererocks base -r^ --$LUA
- export PATH=$PATH:$PWD/base/bin # Add directory with all installed binaries to PATH
- luarocks install busted
2013-12-06 20:28:31 +00:00
script:
- busted -v
branches:
except:
- gh-pages
2013-12-06 20:28:31 +00:00
notifications:
email:
on_success: change
on_failure: always