diff options
author | Jhon Honce <jhonce@redhat.com> | 2019-01-09 15:05:58 -0700 |
---|---|---|
committer | Jhon Honce <jhonce@redhat.com> | 2019-01-10 11:27:50 -0700 |
commit | 45fb935fe44a383ae14f16ab533281687d642c5e (patch) | |
tree | f40e0fd8fae389398a5aa6d35888944cde9f03d8 /.papr.sh | |
parent | 2169b9fe14516b724b257437ed97e32046a4d611 (diff) | |
download | podman-45fb935fe44a383ae14f16ab533281687d642c5e.tar.gz podman-45fb935fe44a383ae14f16ab533281687d642c5e.tar.bz2 podman-45fb935fe44a383ae14f16ab533281687d642c5e.zip |
Move python code from contrib to it's own repo python-podman
Signed-off-by: Jhon Honce <jhonce@redhat.com>
Diffstat (limited to '.papr.sh')
-rw-r--r-- | .papr.sh | 12 |
1 files changed, 0 insertions, 12 deletions
@@ -25,14 +25,12 @@ pwd # -t integration test # -u unit test # -v validate -# -p run python tests build=0 install=0 integrationtest=0 unittest=0 validate=0 -runpython=0 options=0 install_tools_made=0 @@ -44,9 +42,6 @@ while getopts "biptuv" opt; do i) install=1 options=1 ;; - p) runpython=1 - options=1 - ;; t) integrationtest=1 options=1 ;; @@ -124,18 +119,11 @@ if [ $install -eq 1 ]; then make TAGS="${TAGS}" install.man PREFIX=/usr ETCDIR=/etc make TAGS="${TAGS}" install.cni PREFIX=/usr ETCDIR=/etc make TAGS="${TAGS}" install.systemd PREFIX=/usr ETCDIR=/etc - if [ $runpython -eq 1 ]; then - make TAGS="${TAGS}" install.python PREFIX=/usr ETCDIR=/etc - fi - fi # Run integration tests if [ $integrationtest -eq 1 ]; then make TAGS="${TAGS}" test-binaries make varlink_generate GOPATH=/go - if [ $runpython -eq 1 ]; then - make clientintegration GOPATH=/go - fi make ginkgo GOPATH=/go $INTEGRATION_TEST_ENVS fi |