summaryrefslogtreecommitdiff
path: root/contrib/release/jython-run-tests
blob: cd4136c6e54c479eee3aa38994c84869c34334d5 (plain)
1
2
3
4
5
6
7
8
#!/bin/bash
base=${1:-.}
nosetests --with-xunit \
          --xunit-file="$base/nosetests.xml"
# coverage doesn't with with jython
echo "<coverage />" > "$base/coverage.html"
mkdir -p "$base/cover"
touch "$base/cover/index.html"