File: runtests.sh

package info (click to toggle)
python-notify2 0.3-4
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 112 kB
  • sloc: python: 399; makefile: 21; sh: 7
file content (12 lines) | stat: -rwxr-xr-x 253 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
# Runs the tests - called with xvfb-run to provide a display

set -e
# Start the notification daemon
gtk-launch notification-daemon.desktop
sleep 1

# Test with the requested versions of Python
for VER in $PYTHONS
do
    python$VER test_notify2.py
done