File: runtests.sh

package info (click to toggle)
python-notify2 0.3-3
  • links: PTS, VCS
  • area: main
  • in suites: buster, jessie, jessie-kfreebsd, stretch
  • size: 116 kB
  • ctags: 96
  • sloc: python: 399; makefile: 22; sh: 7
file content (12 lines) | stat: -rwxr-xr-x 265 bytes parent folder | download | duplicates (2)
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
/usr/lib/notification-daemon/notification-daemon &
sleep 1

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