tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

pytest.sh (242B)


      1 #!/usr/bin/env bash
      2 set -eux -o pipefail
      3 if [[ ! -d pytest ]]; then
      4    git clone https://github.com/pytest-dev/pytest
      5 fi
      6 pushd pytest && trap popd EXIT
      7 git pull
      8 python -m venv venv
      9 venv/bin/pip install -e .[testing] -e ../..
     10 venv/bin/pytest