From bf0e694321484e24e9cb7249acffa9e94e9b319a Mon Sep 17 00:00:00 2001 From: blackfly Date: Mon, 6 Apr 2020 21:16:43 +0200 Subject: [PATCH] Add missing torch dependency in travis.yml --- .travis.yml | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/.travis.yml b/.travis.yml index 8bee6d4..7106fc4 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,21 +1,19 @@ -# Disable sudo to speed up the build +dist: trusty sudo: false - -# Set the build language to Python language: python - -# Set the python version to 3.8 python: 3.8 +# cache: +# directories: +# - $HOME/.prototorch -# Install the codecov pip dependency install: + - pip install . --progress-bar off - pip install codecov - pip install pytest -# Run the unit test script: - coverage run -m pytest -# Push the results back to codecov +# Push the results to codecov after_success: - codecov