Merge pull request #254 from blueyed/add-Makefile

Add Makefile for 'make test'
This commit is contained in:
Yamashita, Yuu 2014-10-18 09:30:22 +09:00
commit dc1b5a197f
2 changed files with 8 additions and 0 deletions

1
.gitignore vendored
View file

@ -1,3 +1,4 @@
/build
/cache
/shims
/version

7
Makefile Normal file
View file

@ -0,0 +1,7 @@
test: build/bats/bin/bats
build/bats/bin/bats --tap test plugins/python-build/test
build/bats/bin/bats:
git clone https://github.com/sstephenson/bats.git build/bats
.PHONY: test