From 1fc44b3c6e280cf5c110106a339b6caa915cbbea Mon Sep 17 00:00:00 2001 From: MarcoGorelli <33491632+MarcoGorelli@users.noreply.github.com> Date: Fri, 4 Aug 2023 11:29:12 +0100 Subject: [PATCH] remove test cases which would have globbed pandas.tests --- scripts/tests/test_check_test_naming.py | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/scripts/tests/test_check_test_naming.py b/scripts/tests/test_check_test_naming.py index 9ddaf2fe2a97d..dbd803ce4dd31 100644 --- a/scripts/tests/test_check_test_naming.py +++ b/scripts/tests/test_check_test_naming.py @@ -17,18 +17,7 @@ 1, ), ("def test_foo(): pass\n", "", 0), - ( - "class TestFoo:\n def foo(): pass\n", - "t.py:2:4 found test function which does not start with 'test'\n", - 1, - ), ("class TestFoo:\n def test_foo(): pass\n", "", 0), - ( - "class Foo:\n def foo(): pass\n", - "t.py:1:0 found test class which does not start with 'Test'\n" - "t.py:2:4 found test function which does not start with 'test'\n", - 1, - ), ( "def foo():\n pass\ndef test_foo():\n foo()\n", "",