-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Preliminary windows support and tests
- Loading branch information
1 parent
5f6cca5
commit 0dcd1ef
Showing
9 changed files
with
726 additions
and
239 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
return | ||
{ | ||
default = | ||
{ | ||
verbose = true, | ||
lpath = "./lua/?.lua", | ||
ROOT = "./spec", | ||
output = "utfTerminal", | ||
}, | ||
travis = | ||
{ | ||
lpath = "./lua/?.lua", | ||
ROOT = "./spec", | ||
output = "TAP", | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
.DS_store | ||
doc | ||
lua/mmapfile-test | ||
test | ||
luacov.report.out | ||
luacov.stats.out |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
language: python | ||
sudo: false | ||
|
||
env: | ||
- LUA='luajit=2.0' | ||
- LUA='luajit=2.1' | ||
|
||
before_install: | ||
- pip install hererocks | ||
- hererocks lua_install -r^ --$LUA | ||
- export PATH=$PATH:$PWD/lua_install/bin | ||
|
||
|
||
install: | ||
- luarocks install luacheck | ||
- luarocks install busted | ||
- luarocks install luacov | ||
- luarocks install luacov-coveralls | ||
|
||
script: | ||
- luacheck lua | ||
- luacheck --std max+busted spec | ||
- busted --run=travis --coverage . | ||
|
||
after_success: | ||
- luacov-coveralls -i lua |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.