summaryrefslogtreecommitdiffstats
path: root/debian/tests
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-29 04:26:28 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-29 04:26:28 +0000
commit5c790d583db9dfc596ae940133483e4e62165b1c (patch)
treea3218a0874d66700ee344a4837672b9de4e9c176 /debian/tests
parentAdding upstream version 3.8.0. (diff)
downloadflit-5c790d583db9dfc596ae940133483e4e62165b1c.tar.xz
flit-5c790d583db9dfc596ae940133483e4e62165b1c.zip
Adding debian version 3.8.0-3.debian/3.8.0-3debian
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'debian/tests')
-rw-r--r--debian/tests/control10
-rw-r--r--debian/tests/flit-user27
2 files changed, 37 insertions, 0 deletions
diff --git a/debian/tests/control b/debian/tests/control
new file mode 100644
index 0000000..abb280a
--- /dev/null
+++ b/debian/tests/control
@@ -0,0 +1,10 @@
+Tests: flit-user
+Depends:
+ python3-all,
+ python3-docutils,
+ python3-pytest,
+ python3-requests,
+ python3-responses,
+ python3-testpath,
+ @
+Restrictions: allow-stderr
diff --git a/debian/tests/flit-user b/debian/tests/flit-user
new file mode 100644
index 0000000..3aeb71f
--- /dev/null
+++ b/debian/tests/flit-user
@@ -0,0 +1,27 @@
+#!/bin/sh
+set -e
+
+user=testing
+
+if [ "$AUTOPKGTEST_TMP" = "" ] ; then
+ AUTOPKGTEST_TMP=$(mktemp -d /tmp/${pkg}-test.XXXXXX)
+fi
+cd "$AUTOPKGTEST_TMP"
+
+if [ $(id -u) = 0 ]
+then
+ adduser --quiet --system --group --no-create-home $user
+ chown -R $user .
+ runuser="runuser -p -u $user --"
+else
+ runuser=""
+fi
+
+for py in $(py3versions -s); do
+ $runuser $py -m pytest -k 'not test_find_in_path' --pyargs flit_core
+done
+
+if [ $(id -u) = 0 ]
+then
+ deluser --quiet $user
+fi