pyenv/Makefile

16 lines
406 B
Makefile
Raw Normal View History

.PHONY: test test-build
2014-10-15 20:53:18 -04:00
# 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
2014-10-15 20:53:18 -04:00
test-build: bats
cd plugins/python-build && $(PWD)/bats/bin/bats $${CI:+--tap} test/build
bats:
git clone --depth 1 https://github.com/bats-core/bats-core.git bats