From e5f74dea6d766b921e526a4bae824725f6ddf9bc Mon Sep 17 00:00:00 2001 From: "Nathaniel J. Smith" Date: Thu, 13 Oct 2022 18:00:41 -0700 Subject: [PATCH] Install contextlib2 in tox as well --- tox.ini | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 179745a..0f7e3a3 100644 --- a/tox.ini +++ b/tox.ini @@ -3,5 +3,7 @@ isolated_build = true envlist = py27, py37, py38, py39, py310, pypy, pypy3 [testenv] -deps = py27,pypy: mock +deps = + py27,pypy: mock + py27,pypy: contextlib2 commands = python -m unittest discover -p *_test.py