From c8ee97396c74052b8eb804b2dbc28e5a224dd967 Mon Sep 17 00:00:00 2001
From: Nicolas Dandrimont <nicolas@dandrimont.eu>
Date: Thu, 21 Nov 2019 13:46:11 +0100
Subject: [PATCH] Migrate tox.ini to extras = xxx instead of deps = .[testing]

---
 tox.ini | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/tox.ini b/tox.ini
index 8d0ed804..ec89c851 100644
--- a/tox.ini
+++ b/tox.ini
@@ -2,8 +2,9 @@
 envlist=flake8,mypy,py3
 
 [testenv]
+extras =
+  testing
 deps =
-  .[testing]
   pytest-cov
 commands =
   pytest --cov={envsitepackagesdir}/swh/model \
@@ -18,9 +19,9 @@ commands =
   {envpython} -m flake8
 
 [testenv:mypy]
-skip_install = true
+extras =
+  testing
 deps =
-  .[testing]
   mypy
 commands =
   mypy swh
-- 
GitLab