From 9727b6586899d07f600d667ae32cf7339feaa426 Mon Sep 17 00:00:00 2001 From: Brian Quinlan Date: Thu, 28 Mar 2019 10:33:11 -0700 Subject: [PATCH] Remove an incorrect comment. --- nox.py | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/nox.py b/nox.py index 8f45ee6..980f2a8 100644 --- a/nox.py +++ b/nox.py @@ -31,11 +31,7 @@ def lint(session): @nox.session def unit(session): - """Run the unit test suite. - - Unit test files should be named like test_*.py and in the same directory - as the file being tested. - """ + """Run the unit test suite.""" session.interpreter = 'python3' session.install('-e', '.[dev]')