Skip to content

Revert "DOC: test organization" #37756

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
Nov 11, 2020
Merged
Show file tree
Hide file tree
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
1 change: 0 additions & 1 deletion doc/source/development/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ Development
code_style
maintaining
internals
test_writing
extending
developer
policies
Expand Down
147 changes: 0 additions & 147 deletions doc/source/development/test_writing.rst

This file was deleted.

5 changes: 0 additions & 5 deletions pandas/tests/series/methods/test_item.py
Original file line number Diff line number Diff line change
@@ -1,15 +1,10 @@
"""
Series.item method, mainly testing that we get python scalars as opposed to
numpy scalars.
"""
import pytest

from pandas import Series, Timedelta, Timestamp, date_range


class TestItem:
def test_item(self):
# We are testing that we get python scalars as opposed to numpy scalars
ser = Series([1])
result = ser.item()
assert result == 1
Expand Down