mirror of
https://github.com/pyenv/pyenv.git
synced 2024-11-14 20:39:55 -05:00
Add Makefile for 'make test'
This commit is contained in:
parent
de5c61cd59
commit
79507fbadf
2 changed files with 8 additions and 0 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -1,3 +1,4 @@
|
|||
/build
|
||||
/cache
|
||||
/shims
|
||||
/version
|
||||
|
|
7
Makefile
Normal file
7
Makefile
Normal 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
|
Loading…
Reference in a new issue