summaryrefslogtreecommitdiff
path: root/.papr.sh
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2019-01-10 11:11:46 -0800
committerGitHub <noreply@github.com>2019-01-10 11:11:46 -0800
commit6524041fb0ebfc35dafe3bb7bebbd4dfa27ba5e8 (patch)
treecf6e4191124ea1c44b9cadb504c0b2f5e6269a50 /.papr.sh
parente4525cf844535014923a2253e8531d92d9e556e5 (diff)
parent45fb935fe44a383ae14f16ab533281687d642c5e (diff)
downloadpodman-6524041fb0ebfc35dafe3bb7bebbd4dfa27ba5e8.tar.gz
podman-6524041fb0ebfc35dafe3bb7bebbd4dfa27ba5e8.tar.bz2
podman-6524041fb0ebfc35dafe3bb7bebbd4dfa27ba5e8.zip
Merge pull request #2119 from jwhonce/wip/python_podman
Move python code from contrib to it's own repo python-podman
Diffstat (limited to '.papr.sh')
-rw-r--r--.papr.sh12
1 files changed, 0 insertions, 12 deletions
diff --git a/.papr.sh b/.papr.sh
index 284326709..a42952824 100644
--- a/.papr.sh
+++ b/.papr.sh
@@ -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