From 3305a65b77e2ae0de2d6aa1ecb4b16d09314cf13 Mon Sep 17 00:00:00 2001 From: Tim 'mithro' Ansell Date: Mon, 6 Apr 2020 17:52:07 -0700 Subject: [PATCH] Enable testing on multiple Python versions. Makes sure LiteX tests pass on all supported Python versions. --- .travis.yml | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/.travis.yml b/.travis.yml index 70b38111..47263828 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,21 +1,21 @@ jobs: include: -# - os: linux -# dist: xenial -# language: python -# python: "3.5" + - os: linux + dist: xenial + language: python + python: "3.5" - os: linux dist: xenial language: python python: "3.6" -# - os: linux -# dist: xenial -# language: python -# python: "3.7" -# - os: linux -# dist: xenial -# language: python -# python: "3.8" + - os: linux + dist: xenial + language: python + python: "3.7" + - os: linux + dist: xenial + language: python + python: "3.8" - os: osx osx_image: xcode10.2 # Includes Python 3.7 language: shell -- 2.30.2