From 63ee08f0d80caf81ad88ca11900bd4fe5a6376d9 Mon Sep 17 00:00:00 2001 From: akhiljain23 Date: Thu, 4 Oct 2018 13:25:15 +0530 Subject: [PATCH] Add python 3.6 for test and remove pypy in tox This commit adds support for py36 in tox.ini by default. When tox command is executed by developer it will run py36 tests. Also removes pypy as it's no longer used. Change-Id: I13df371624787d1a8b0f85bdb9750527e3fdb987 --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index c62df8d..6b2b968 100644 --- a/tox.ini +++ b/tox.ini @@ -1,6 +1,6 @@ [tox] minversion = 2.0 -envlist = py35,py27,pypy,pep8 +envlist = py35,py36,py27,pep8 skipsdist = True [testenv]