From 3c8ff878a99665819b624d83b02ac6d195ce0199 Mon Sep 17 00:00:00 2001 From: Carl Lundin Date: Thu, 15 Jun 2023 10:44:21 -0700 Subject: [PATCH] fix: pypy unit test had a typo. --- noxfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/noxfile.py b/noxfile.py index 30b10574a..19e162bcc 100644 --- a/noxfile.py +++ b/noxfile.py @@ -145,7 +145,7 @@ def docs(session): @nox.session(python="pypy") def pypy(session): - session.install("-r", "test/requirements.txt") + session.install("-r", "testing/requirements.txt") session.install("-e", ".") session.run( "pytest",