Skip to content
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

TST: Add test for exceptional behavior when calling view() on BaseStringArray #60799

Merged
merged 3 commits into from
Jan 27, 2025

Conversation

MattePalte
Copy link
Contributor

  • closes #xxxx (Replace xxxx with the GitHub issue number)
  • Tests added and passed if fixing a bug or adding a new feature
  • All code checks passed.
  • Added type annotations to new arguments/methods/functions.
  • Added an entry in the latest doc/source/whatsnew/vX.X.X.rst file if fixing a bug or adding a new feature.

This PR introduces additional tests for the view method of BaseStringArray, which was recently added in PR #60713. The existing test suite did not cover this method, as shown in the coverage reports below. (I also run the entire test suite locally and double checked that the line is not covered).

To verify the tests, you can run:

cd tooling/
pytest --cov=$PWD/../pandas/core/arrays/ --cov-report=xml ../pandas/tests/indexes/test_base.py::TestIndex

Note: Currently, running pytest from the root directory is resulting in an error in the coverage collection (regardless of which test). If you have any suggestions on how to resolve this issue, please let me know.

This PR aims to ensure that the view method is thoroughly tested and meets the pandas testing standards. Your feedback and suggestions are welcome.

Coverage Before

test_pr_60713_coverage_before_anonymized

Coverage After

test_pr_60713_coverage_after_anonymized

Thanks in advance, let me know if you need any more input from my side

@@ -1351,6 +1351,13 @@ def test_index_round(self, decimals, expected_results):

tm.assert_index_equal(result, expected)

def test_string_array_view_type_error(self):
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can you move this to pandas/tests/arrays/string_/test_string.py?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done. Thanks for the fast feedback @mroeschke I did move it as suggested, let me know if any other change is needed

@mroeschke mroeschke added the Testing pandas testing functions or related to the test suite label Jan 27, 2025
@mroeschke mroeschke added this to the 3.0 milestone Jan 27, 2025
@mroeschke mroeschke merged commit c0c778b into pandas-dev:main Jan 27, 2025
41 of 42 checks passed
@mroeschke
Copy link
Member

Thanks @MattePalte

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Testing pandas testing functions or related to the test suite
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants