Skip to content

CI: remove test cases which would have globbed pandas.tests #54404

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Aug 4, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 0 additions & 11 deletions scripts/tests/test_check_test_naming.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
"",
Expand Down