Python version matrix



examples/python-version-matrix/.travis.yml
language: python
script: pytest -s

python:
  - "3.7"
  - "3.8"

examples/python-version-matrix/test_python.py
import sys

def test_anything():
    print(sys.version)
    pass