mirror of
https://github.com/yaml/pyyaml.git
synced 2025-10-19 11:03:18 +00:00

* custom pytest collector and item to surface pyyaml data-driven tests as individual pytest unit tests * moved some true unit tests to pytest-native tests * deprecated `setup.py test` custom command * updated Makefile to use pytest * align test matrix with planned 7.x Python support
48 lines
962 B
Makefile
48 lines
962 B
Makefile
|
|
.PHONY: build dist
|
|
|
|
PYTHON=/usr/bin/python3
|
|
TEST=
|
|
PARAMETERS=
|
|
|
|
build:
|
|
${PYTHON} setup.py build ${PARAMETERS}
|
|
|
|
buildext:
|
|
${PYTHON} setup.py --with-libyaml build ${PARAMETERS}
|
|
|
|
force:
|
|
${PYTHON} setup.py build -f ${PARAMETERS}
|
|
|
|
forceext:
|
|
${PYTHON} setup.py --with-libyaml build -f ${PARAMETERS}
|
|
|
|
install:
|
|
${PYTHON} setup.py install ${PARAMETERS}
|
|
|
|
installext:
|
|
${PYTHON} setup.py --with-libyaml install ${PARAMETERS}
|
|
|
|
test: build
|
|
PYYAML_FORCE_LIBYAML=0 ${PYTHON} -I -m pytest
|
|
|
|
testext: buildext
|
|
PYYAML_FORCE_LIBYAML=1 ${PYTHON} -I -m pytest
|
|
|
|
testall:
|
|
${PYTHON} -m pytest
|
|
|
|
dist:
|
|
@# No longer uploading a zip file to pypi
|
|
@# ${PYTHON} setup.py --with-libyaml sdist --formats=zip,gztar
|
|
${PYTHON} setup.py --with-libyaml sdist --formats=gztar
|
|
|
|
clean:
|
|
${PYTHON} setup.py --with-libyaml clean -a
|
|
rm -fr \
|
|
dist/ \
|
|
lib/PyYAML.egg-info/ \
|
|
lib/yaml/__pycache__/ \
|
|
tests/__pycache__/ \
|
|
tests/legacy_tests/__pycache__/ \
|
|
yaml/_yaml.c
|