summaryrefslogtreecommitdiff
path: root/debian/tests/smoke-python2
diff options
context:
space:
mode:
Diffstat (limited to 'debian/tests/smoke-python2')
-rwxr-xr-xdebian/tests/smoke-python239
1 files changed, 0 insertions, 39 deletions
diff --git a/debian/tests/smoke-python2 b/debian/tests/smoke-python2
deleted file mode 100755
index 72493bc..0000000
--- a/debian/tests/smoke-python2
+++ /dev/null
@@ -1,39 +0,0 @@
-#! /bin/bash
-#
-# debian/tests/smoke-python2
-# Part of Debian ‘python-jsonext’ package.
-#
-# Copyright © 2016–2017 Ben Finney <bignose@debian.org>
-# This is free software; you may copy, modify and/or distribute this work
-# under the terms of the GNU General Public License, version 3 or later.
-# No warranty expressed or implied.
-#
-# Smoke test for package in Python 2 environments.
-
-set -o errexit
-set -o errtrace
-set -o nounset
-
-DISTRIBUTION_NAME=jsonext
-MODULE_NAMES=(
- jsonext
- )
-
-test_opts="--distribution=$DISTRIBUTION_NAME"
-for mod in ${MODULE_NAMES[@]} ; do
- # Accumulate the module names.
- test_opts="$test_opts --module=$mod"
-done
-
-for py in $(pyversions -i) ; do
- printf "Python command: %s\n" $py
- $py debian/tests/smoke_test.py $test_opts
- printf "\n"
-done
-
-
-# Local variables:
-# coding: utf-8
-# mode: shell-script
-# End:
-# vim: fileencoding=utf-8 filetype=sh :