diff options
author | Jhon Honce <jhonce@redhat.com> | 2018-10-15 11:28:56 -0700 |
---|---|---|
committer | Jhon Honce <jhonce@redhat.com> | 2018-10-23 07:58:48 -0700 |
commit | a7ea7e9d5c9b1d023fc57f4c5da5faeece187bf7 (patch) | |
tree | 36d48c917dc9ffe169b709de9e105a9b6144c5a0 /contrib/python/podman | |
parent | 2e6bc3c7af261228ae7a75cb5749062928fa24b3 (diff) | |
download | podman-a7ea7e9d5c9b1d023fc57f4c5da5faeece187bf7.tar.gz podman-a7ea7e9d5c9b1d023fc57f4c5da5faeece187bf7.tar.bz2 podman-a7ea7e9d5c9b1d023fc57f4c5da5faeece187bf7.zip |
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 <jhonce@redhat.com>
Diffstat (limited to 'contrib/python/podman')
-rw-r--r-- | contrib/python/podman/MANIFEST.in | 1 | ||||
-rw-r--r-- | contrib/python/podman/tox.ini | 8 |
2 files changed, 9 insertions, 0 deletions
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 |