summaryrefslogtreecommitdiff
path: root/debian/tests
diff options
context:
space:
mode:
authorPicca Frédéric-Emmanuel <picca@debian.org>2018-08-05 08:11:32 +0200
committerPicca Frédéric-Emmanuel <picca@debian.org>2018-08-05 08:17:48 +0200
commita353c00eb6fdbc4480748aaffd5b2d5705debcdc (patch)
tree37334daeaa814b46bcbf1026489d129fc56a604f /debian/tests
parent9c6744cde11295751236f218af45fc31d3d56dbd (diff)
Fixed autopkgtests
Diffstat (limited to 'debian/tests')
-rwxr-xr-xdebian/tests/python24
-rwxr-xr-xdebian/tests/python2-dbg4
-rwxr-xr-xdebian/tests/python34
-rwxr-xr-xdebian/tests/python3-dbg4
4 files changed, 8 insertions, 8 deletions
diff --git a/debian/tests/python2 b/debian/tests/python2
index 31e3d64..39734a1 100755
--- a/debian/tests/python2
+++ b/debian/tests/python2
@@ -5,10 +5,10 @@ export LC_ALL=C.UTF-8
pys="$(pyversions -rv 2> /dev/null)"
-cp -a tests "$AUTOPKGTEST_TMP"
+cp -a silx/test "$AUTOPKGTEST_TMP"
cd "$AUTOPKGTEST_TMP"
for py in $pys; do
echo "=== python$py ==="
- python$py -m unittest discover silx/test/ 2>&1
+ python$py -m unittest discover test/ 2>&1
done
diff --git a/debian/tests/python2-dbg b/debian/tests/python2-dbg
index f43398e..0c86b9a 100755
--- a/debian/tests/python2-dbg
+++ b/debian/tests/python2-dbg
@@ -5,10 +5,10 @@ export LC_ALL=C.UTF-8
pys="$(pyversions -rv 2> /dev/null)"
-cp -a tests "$AUTOPKGTEST_TMP"
+cp -a silx/test "$AUTOPKGTEST_TMP"
cd "$AUTOPKGTEST_TMP"
for py in $pys; do
echo "=== python$py ==="
- python$py-dbg -m unittest discover silx/test/ 2>&1
+ python$py-dbg -m unittest discover test/ 2>&1
done
diff --git a/debian/tests/python3 b/debian/tests/python3
index 51858b8..e63e9c5 100755
--- a/debian/tests/python3
+++ b/debian/tests/python3
@@ -5,10 +5,10 @@ export LC_ALL=C.UTF-8
pys="$(py3versions -rv 2> /dev/null)"
-cp -a tests "$AUTOPKGTEST_TMP"
+cp -a silx/test "$AUTOPKGTEST_TMP"
cd "$AUTOPKGTEST_TMP"
for py in $pys; do
echo "=== python$py ==="
- python$py -m unittest discover silx/test/ 2>&1
+ python$py -m unittest discover test/ 2>&1
done
diff --git a/debian/tests/python3-dbg b/debian/tests/python3-dbg
index d9c1208..ae791ae 100755
--- a/debian/tests/python3-dbg
+++ b/debian/tests/python3-dbg
@@ -5,10 +5,10 @@ export LC_ALL=C.UTF-8
pys="$(py3versions -rv 2> /dev/null)"
-cp -a tests "$AUTOPKGTEST_TMP"
+cp -a silx/test "$AUTOPKGTEST_TMP"
cd "$AUTOPKGTEST_TMP"
for py in $pys; do
echo "=== python$py ==="
- python$py-dbg -m unittest discover silx/test/ 2>&1
+ python$py-dbg -m unittest discover test/ 2>&1
done