mirror of
https://github.com/pyenv/pyenv.git
synced 2024-12-21 09:32:58 -05:00
Allow to test python-build separately
This commit is contained in:
parent
aa07a3a37c
commit
73d4f3102a
1 changed files with 6 additions and 2 deletions
8
Makefile
8
Makefile
|
@ -1,11 +1,15 @@
|
|||
.PHONY: test test-build
|
||||
.PHONY: test test-build test-unit test-plugin
|
||||
|
||||
# Do not pass in user flags to build tests.
|
||||
unexport PYTHON_CFLAGS
|
||||
unexport PYTHON_CONFIGURE_OPTS
|
||||
|
||||
test: bats
|
||||
test: test-unit test-plugin
|
||||
|
||||
test-unit: bats
|
||||
PATH="./bats/bin:$$PATH" test/run
|
||||
|
||||
test-plugin: bats
|
||||
cd plugins/python-build && $(PWD)/bats/bin/bats $${CI:+--tap} test
|
||||
|
||||
PYTHON_BUILD_ROOT := $(CURDIR)/plugins/python-build
|
||||
|
|
Loading…
Reference in a new issue