mirror of
https://github.com/containers/podman.git
synced 2025-06-25 20:26:51 +08:00

- More pythonic - Leverage context managers to help with socket leaks - Add system unittest's - Add image unittest's - Add container unittest's - Add models for system, containers and images, and their collections - Add helper functions for datetime parsing/formatting - GetInfo() implemented - Add support for setuptools - Update documentation - Support for Python 3.4-3.6 Signed-off-by: Jhon Honce <jhonce@redhat.com> Closes: #748 Approved by: baude
16 lines
281 B
Makefile
16 lines
281 B
Makefile
PYTHON ?= /usr/bin/python3
|
|
|
|
.PHONY: python-podman
|
|
python-podman:
|
|
$(PYTHON) setup.py bdist
|
|
|
|
.PHONY: integration
|
|
integration:
|
|
test/test_runner.sh
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
$(PYTHON) setup.py clean --all
|
|
rm -rf podman.egg-info dist
|
|
find . -depth -name __pycache__ -exec rm -rf {} \;
|