File: run.sh

package info (click to toggle)
python-bytecode 0.16.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 780 kB
  • sloc: python: 8,300; makefile: 169; sh: 40
file content (13 lines) | stat: -rw-r--r-- 169 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/bash -eu

set -e
set -u

PREFIX=${1}-${2}
PY=${2}

cd ${PREFIX}/boto3
    source ${PREFIX}/.venv/bin/activate
    python scripts/ci/run-tests
    deactivate
cd -