aboutsummaryrefslogtreecommitdiffstats
path: root/testing/py3-notify2/test-wrapper.sh
diff options
context:
space:
mode:
Diffstat (limited to 'testing/py3-notify2/test-wrapper.sh')
-rw-r--r--testing/py3-notify2/test-wrapper.sh16
1 files changed, 0 insertions, 16 deletions
diff --git a/testing/py3-notify2/test-wrapper.sh b/testing/py3-notify2/test-wrapper.sh
deleted file mode 100644
index b4763bc0e84..00000000000
--- a/testing/py3-notify2/test-wrapper.sh
+++ /dev/null
@@ -1,16 +0,0 @@
-#!/bin/sh
-# Copyright 2020 Antoine Fontaine
-# SPDX-License-Identifier: GPL-3.0-or-later
-
-# tiny wrapper that starts a notification dæmon (dunst)
-# for the testsuite to talk to
-
-dunst >/dev/null 2>&1 &
-dunst_pid=$!
-
-python3 test_notify2.py
-success=$?
-
-kill $dunst_pid
-
-exit $success