forked from czenker/lively-epsilon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
34 lines (27 loc) · 816 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
language: python
sudo: false
env:
- LUA="5.3.1" EE_BRANCH="master"
before_install:
- pip install hererocks
- hererocks lua_install -rlatest -l${LUA}
- export PATH=$PATH:$PWD/lua_install/bin # Add directory with all installed binaries to PATH
install:
# - luarocks install luacheck
- luarocks install busted
# - luarocks install luacov
# - luarocks install luacov-coveralls
- wget "https://raw.githubusercontent.com/daid/EmptyEpsilon/${EE_BRANCH}/scripts/utils.lua" -O utils.lua
script:
# - luacheck --no-unused-args --std max+busted *.lua spec
# - busted --verbose --coverage test/
- busted --verbose test/
#after_success:
# - luacov-coveralls --exclude $TRAVIS_BUILD_DIR/lua_install
branches:
except:
- gh-pages
notifications:
email:
on_success: change
on_failure: always