File: tox.sh

package info (click to toggle)
python-pluggy 1.6.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 476 kB
  • sloc: python: 3,344; sh: 58; makefile: 6
file content (9 lines) | stat: -rwxr-xr-x 221 bytes parent folder | download | duplicates (16)
1
2
3
4
5
6
7
8
9
#!/usr/bin/env bash
set -eux -o pipefail
if [[ ! -d tox ]]; then
    git clone https://github.com/tox-dev/tox
fi
pushd tox && trap popd EXIT
python -m venv venv
venv/bin/pip install -e .[testing] -e ../..
venv/bin/pytest