File: run.sh

package info (click to toggle)
austin 3.7.0-7
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 11,444 kB
  • sloc: ansic: 8,622; python: 2,669; sh: 106; makefile: 54
file content (14 lines) | stat: -rwxr-xr-x 251 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/bash

set -e

PY=${1:-}
if [ -n "$PY" ]; then
    shift
fi

source /tmp/austin-test/bin/activate
ulimit -c unlimited
export LD_LIBRARY_PATH="/Users/gabriele/Projects/libunwind/src/.libs/"
AUSTIN_TESTS_PYTHON_VERSIONS=$PY pytest "$@"
deactivate