mirror of
https://github.com/pyenv/pyenv.git
synced 2024-11-07 20:31:01 -05:00
12 lines
295 B
Makefile
12 lines
295 B
Makefile
.PHONY: test
|
|
|
|
# Do not pass in user flags to build tests.
|
|
unexport PYTHON_CFLAGS
|
|
unexport PYTHON_CONFIGURE_OPTS
|
|
|
|
test: bats
|
|
PATH="./bats/bin:$$PATH" test/run
|
|
cd plugins/python-build && $(PWD)/bats/bin/bats $${CI:+--tap} test
|
|
|
|
bats:
|
|
git clone --depth 1 https://github.com/sstephenson/bats.git
|