From 3b5aca8cd6fe10e4e287ec9a2df3993ba42caed0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20G=C3=B3rny?= Date: Thu, 7 Jan 2021 09:39:37 +0100 Subject: [PATCH] tox.ini: Fix incorrect dependency syntax Fix the dependency syntax in tox.ini. The current syntax results in: ERROR: Invalid requirement: 'coverage pytest' --- tox.ini | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index fef58a82..2030f253 100644 --- a/tox.ini +++ b/tox.ini @@ -3,7 +3,9 @@ envlist = py{36,37,38,39,py3} [testenv] commands = pytest -v pymysql/tests/ -deps = coverage pytest +deps = + coverage + pytest passenv = USER PASSWORD PAMSERVICE