tor-browser

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

requirements-install.sh (259B)


      1 #!/bin/bash -ex
      2 
      3 if [[ $SIX_VERSION ]]; then
      4  pip install six==$SIX_VERSION
      5 fi
      6 
      7 pip install -r requirements-test.txt
      8 
      9 if [[ $USE_OPTIONAL == "true" ]]; then
     10  pip install -r requirements-optional.txt
     11 fi
     12 
     13 if [[ $CI == "true" ]]; then
     14  pip install codecov
     15 fi