File: pretty_tox.sh

package info (click to toggle)
python-novaclient 2%3A6.0.0-2
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 2,260 kB
  • ctags: 4,382
  • sloc: python: 23,697; sh: 98; makefile: 92
file content (16 lines) | stat: -rwxr-xr-x 426 bytes parent folder | download | duplicates (15)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/usr/bin/env bash

set -o pipefail

TESTRARGS=$1

# --until-failure is not compatible with --subunit see:
#
# https://bugs.launchpad.net/testrepository/+bug/1411804
#
# this work around exists until that is addressed
if [[ "$TESTARGS" =~ "until-failure" ]]; then
    python setup.py testr --slowest --testr-args="$TESTRARGS"
else
    python setup.py testr --slowest --testr-args="--subunit $TESTRARGS" | subunit-trace -f
fi