From 277bef14d6c18064d3db586d118a7168d099f1e9 Mon Sep 17 00:00:00 2001 From: Artur Tretiak Date: Mon, 7 Oct 2019 17:44:46 +0300 Subject: [PATCH] Update .travis.yml --- .travis.yml | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/.travis.yml b/.travis.yml index 1d1da4c..2baa99c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,15 +1,16 @@ language: python python: - - "3.3" - "3.4" - "3.5" - - "3.5-dev" # 3.5 development branch - - "3.6" - - "3.6-dev" # 3.6 development branch + - "3.6" # current default Python on Travis CI + - "3.7" - "3.7-dev" # 3.7 development branch + - "3.8-dev" # 3.8 development branch + - "nightly" # nightly build +before_install: # command to install dependencies + - chmod a+x HiddenEye.py install: - pip3 install -r requirements.txt # command to run tests -script: - - sudo python HiddenEye.py +script: sudo ./HiddenEye.py