You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@beam.apache.org by bh...@apache.org on 2020/09/21 19:57:41 UTC

[beam] branch indexing-pandas1 created (now a856081)

This is an automated email from the ASF dual-hosted git repository.

bhulette pushed a change to branch indexing-pandas1
in repository https://gitbox.apache.org/repos/asf/beam.git.


      at a856081  Update indexing skips for pandas 1.x

This branch includes the following new commits:

     new a856081  Update indexing skips for pandas 1.x

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[beam] 01/01: Update indexing skips for pandas 1.x

Posted by bh...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

bhulette pushed a commit to branch indexing-pandas1
in repository https://gitbox.apache.org/repos/asf/beam.git

commit a856081ee8553a0dcbed00859e268a6971cb3b97
Author: Brian Hulette <bh...@google.com>
AuthorDate: Mon Sep 21 12:57:14 2020 -0700

    Update indexing skips for pandas 1.x
---
 sdks/python/apache_beam/dataframe/pandas_doctests_test.py | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/sdks/python/apache_beam/dataframe/pandas_doctests_test.py b/sdks/python/apache_beam/dataframe/pandas_doctests_test.py
index 44a26f6..f302c84 100644
--- a/sdks/python/apache_beam/dataframe/pandas_doctests_test.py
+++ b/sdks/python/apache_beam/dataframe/pandas_doctests_test.py
@@ -310,11 +310,12 @@ class DoctestTest(unittest.TestCase):
         pd.core.indexing,
         use_beam=False,
         skip={
-            'pandas.core.indexing._AtIndexer': ['*'],
             'pandas.core.indexing._IndexSlice': ['*'],
-            'pandas.core.indexing._LocIndexer': ['*'],
-            'pandas.core.indexing._iAtIndexer': ['*'],
-            'pandas.core.indexing._iLocIndexer': ['*'],
+            'pandas.core.indexing.IndexingMixin.at': ['*'],
+            'pandas.core.indexing.IndexingMixin.iat: ['*'],
+            'pandas.core.indexing.IndexingMixin.iloc: ['*'],
+            'pandas.core.indexing.IndexingMixin.loc: ['*'],
+          
         })
     self.assertEqual(result.failed, 0)