From 7a7758d900c8b9d218ebf26361de7df21c0383dd Mon Sep 17 00:00:00 2001 From: tamirmich Date: Thu, 16 Feb 2023 11:19:15 +0200 Subject: [PATCH] Fix travis ci (#79) * fix travis ci * fix python alias --- tox.ini | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tox.ini b/tox.ini index 9fd1b6d..7335ca1 100644 --- a/tox.ini +++ b/tox.ini @@ -1,6 +1,6 @@ [tox] minversion = 1.7.2 -envlist = flake8, py3flake8, py35, py36, py37, py38, py39, pypy, pypy3 +envlist = flake8, py3flake8, python3.5, python3.6, python3.7, python3.8, python3.8, pypy, pypy3 skip_missing_interpreters = true [testenv] @@ -9,7 +9,7 @@ deps = requests pytest pytest-cov -passenv = CI TRAVIS TRAVIS_* +passenv = CI,TRAVIS,TRAVIS_* commands = pytest --cov-report term-missing --cov logzio tests -v [testenv:flake8]