File: upstream

package info (click to toggle)
python-dateutil 2.5.3-2
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 908 kB
  • ctags: 1,329
  • sloc: python: 9,045; sh: 11; makefile: 5
file content (17 lines) | stat: -rwxr-xr-x 185 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/sh

set -e
set -x

cleanup() {
    [ -z "$TMPDIR" ] || rm -r "$TMPDIR"
}
trap cleanup EXIT

TMPDIR=$(mktemp -d)

cp -a dateutil/test $TMPDIR
cd $TMPDIR
nosetests-2.7
nosetests3