Skip to content

Commit 5d27560

Browse files
authored
CI: remove test cases which would have globbed pandas.tests (#54404)
remove test cases which would have globbed pandas.tests
1 parent 782f438 commit 5d27560

File tree

1 file changed

+0
-11
lines changed

1 file changed

+0
-11
lines changed

scripts/tests/test_check_test_naming.py

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -17,18 +17,7 @@
1717
1,
1818
),
1919
("def test_foo(): pass\n", "", 0),
20-
(
21-
"class TestFoo:\n def foo(): pass\n",
22-
"t.py:2:4 found test function which does not start with 'test'\n",
23-
1,
24-
),
2520
("class TestFoo:\n def test_foo(): pass\n", "", 0),
26-
(
27-
"class Foo:\n def foo(): pass\n",
28-
"t.py:1:0 found test class which does not start with 'Test'\n"
29-
"t.py:2:4 found test function which does not start with 'test'\n",
30-
1,
31-
),
3221
(
3322
"def foo():\n pass\ndef test_foo():\n foo()\n",
3423
"",

0 commit comments

Comments
 (0)