From b57df6d0b335595d3197eb6907fb8d1a8237fc7e Mon Sep 17 00:00:00 2001 From: flywind <43030857+xflywind@users.noreply.github.com> Date: Sun, 27 Dec 2020 03:15:57 -0600 Subject: [PATCH] Don't use `unittest.suite` and `unittest.test` (#16464) --- doc/contributing.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/contributing.rst b/doc/contributing.rst index 90330e4f45..34c9634108 100644 --- a/doc/contributing.rst +++ b/doc/contributing.rst @@ -47,7 +47,7 @@ which only gets executed when the tester is building the file. Each test should be in a separate ``block:`` statement, such that each has its own scope. Use boolean conditions and ``doAssert`` for the testing by itself, don't rely on echo statements or similar; in particular, avoid -things like `echo "done"`. +things like `echo "done"`. Don't use `unittest.suite` and `unittest.test`. Sample test: