test_old_deps.sh 464 B

12345678910111213141516
  1. #!/usr/bin/env bash
  2. # this script is run by GitHub Actions in a plain `bionic` container; it installs the
  3. # minimal requirements for tox and hands over to the py3-old tox environment.
  4. set -ex
  5. apt-get update
  6. apt-get install -y python3 python3-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 py3-old,combine