1#!/bin/sh -ex 2 3unset PYTHONPATH 4python3 -m venv build/venv 5. build/venv/bin/activate 6 7pip install --upgrade pip 8pip install tox 9# We should really do this differently, test from a `pip install .` so that 10# testing relies on the setup.cfg install_requires instead of listing it here. 11pip install psutil 12tox -e "py3$(python -c 'import sys; print(sys.version_info.minor)')" 13