From 1589b4799d30e67fbef6dd50e17b9443c1ceeb05 Mon Sep 17 00:00:00 2001 From: Dimitri Savineau Date: Wed, 5 May 2021 11:08:08 -0400 Subject: [PATCH] ceph-volume: remove duplicate py3 env We don't need to have py36 and py3 env in the tox configuration. Currently we're running pytest twice on the same python 3 release. Using py3 only is more generic and reflects was is defined in the other tox.ini file for other components. Signed-off-by: Dimitri Savineau --- src/ceph-volume/tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ceph-volume/tox.ini b/src/ceph-volume/tox.ini index 6ccf3e775caa..9c09f8f9e456 100644 --- a/src/ceph-volume/tox.ini +++ b/src/ceph-volume/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py36, py3, py3-flake8 +envlist = py3, py3-flake8 skip_missing_interpreters = true [testenv] -- 2.47.3