linux job: tags: - linux image: quay.io/python-devs/ci-image:master script: - tox windows job: tags: - windows before_script: # Allow chocolatey to install without confirmation. - choco feature enable -n allowGlobalConfirmation # Install latest stable Python (currently 3.9). - choco install python -r # Add default Python and its scripts to the Path. - $ENV:Path+=";C:\Python39;C:\Python39\Scripts" # Install older Pythons. - choco install python -r --side-by-side --version=3.8.6 - choco install python -r --side-by-side --version=3.7.9 - choco install python -r --side-by-side --version=3.6.8 # Upgrade/install the latest pip and tox. - py -m pip install --upgrade pip - py -3.8 -m pip install --upgrade pip - py -3.7 -m pip install --upgrade pip - py -3.6 -m pip install --upgrade pip - py -m pip install tox script: - tox