mirror of
https://git.launchpad.net/~ubuntu-release/britney/+git/britney2-ubuntu
synced 2025-02-11 14:37:04 +00:00
7 lines
193 B
Bash
Executable File
7 lines
193 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# This script is used on (e.g.) Travis CI to collect coverage
|
|
|
|
dir=$(dirname "$(dirname "$0")")
|
|
exec python3-coverage run --rcfile "$dir/.coveragerc" --append "$dir/britney.py" "$@"
|