Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
 
 
 
 
 
 

17 řádky
457 B

  1. #!/bin/bash
  2. # this script is run by buildkite in a plain `xenial` container; it installs the
  3. # minimal requirements for tox and hands over to the py35-old tox environment.
  4. set -ex
  5. apt-get update
  6. apt-get install -y python3.5 python3.5-dev python3-pip libxml2-dev libxslt-dev xmlsec1 zlib1g-dev tox
  7. export LANG="C.UTF-8"
  8. # Prevent virtualenv from auto-updating pip to an incompatible version
  9. export VIRTUALENV_NO_DOWNLOAD=1
  10. exec tox -e py35-old,combine