From a7ea7e9d5c9b1d023fc57f4c5da5faeece187bf7 Mon Sep 17 00:00:00 2001 From: Jhon Honce Date: Mon, 15 Oct 2018 11:28:56 -0700 Subject: Downgrade code to support python3.4 * Added tox configuration to test python 3.4, 3.5 and 3.6. Tox testing not enabled on every PR * Updated MANIFEST.ini to support tox * Correct comments Fixes #1641 Signed-off-by: Jhon Honce --- contrib/python/podman/MANIFEST.in | 1 + contrib/python/podman/tox.ini | 8 ++++++++ 2 files changed, 9 insertions(+) create mode 100644 contrib/python/podman/tox.ini (limited to 'contrib/python/podman') diff --git a/contrib/python/podman/MANIFEST.in b/contrib/python/podman/MANIFEST.in index 72e638cb9..a5897de50 100644 --- a/contrib/python/podman/MANIFEST.in +++ b/contrib/python/podman/MANIFEST.in @@ -1,2 +1,3 @@ prune test/ include README.md +include requirements.txt diff --git a/contrib/python/podman/tox.ini b/contrib/python/podman/tox.ini new file mode 100644 index 000000000..797eafbe3 --- /dev/null +++ b/contrib/python/podman/tox.ini @@ -0,0 +1,8 @@ +[tox] +envlist = py34,py35,py36 +skipdist = True + +[testenv] +deps=-rrequirements.txt +whitelist_externals = bash +commands=bash test/test_runner.sh -- cgit v1.2.3-54-g00ecf