From 6ec7038b5b34c196292174d861d15e1a63cefa47 Mon Sep 17 00:00:00 2001 From: Florent Kermarrec Date: Tue, 7 Apr 2020 12:07:27 +0200 Subject: [PATCH] .travis.yml: fix git clone error. --- .travis.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 65db6fa..0017c82 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,7 +4,13 @@ python: "3.6" install: # Get Migen / LiteX / Cores + - cd ~/ - wget https://raw.githubusercontent.com/enjoy-digital/litex/master/litex_setup.py - python3 litex_setup.py init install + # Install the version being tested + - cd $TRAVIS_BUILD_DIR + - python3 setup.py install -script: python setup.py test +script: + - cd $TRAVIS_BUILD_DIR + - python setup.py test