Skip to content

Commit

Permalink
Try fixing tests
Browse files Browse the repository at this point in the history
Signed-off-by: sfc-gh-mvashishtha <mahesh.vashishtha@snowflake.com>
  • Loading branch information
sfc-gh-mvashishtha committed Jul 31, 2024
1 parent 9890eae commit 45e7669
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 1 deletion.
16 changes: 16 additions & 0 deletions modin/tests/config/docs_module_with_just_base/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# Licensed to Modin Development Team under one or more contributor license agreements.
# See the NOTICE file distributed with this work for additional information regarding
# copyright ownership. The Modin Development Team licenses this file to you under the
# Apache License, Version 2.0 (the "License"); you may not use this file except in
# compliance with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software distributed under
# the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF
# ANY KIND, either express or implied. See the License for the specific language
# governing permissions and limitations under the License.

from .classes import BasePandasDataset

__all__ = ["BasePandasDataset"]
17 changes: 17 additions & 0 deletions modin/tests/config/docs_module_with_just_base/classes.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Licensed to Modin Development Team under one or more contributor license agreements.
# See the NOTICE file distributed with this work for additional information regarding
# copyright ownership. The Modin Development Team licenses this file to you under the
# Apache License, Version 2.0 (the "License"); you may not use this file except in
# compliance with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software distributed under
# the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF
# ANY KIND, either express or implied. See the License for the specific language
# governing permissions and limitations under the License.


class BasePandasDataset:
def astype():

Check notice

Code scanning / CodeQL

First parameter of a method is not named 'self' Note test

Normal methods should have at least one parameter (the first of which should be 'self').
"""This is a test of the documentation module for BasePandasDataSet.astype."""
2 changes: 1 addition & 1 deletion modin/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -516,7 +516,7 @@ def _inherit_docstrings_in_place(
obj,
overwrite_existing,
apilink,
parent_cls=cls_or_func,
parent_cls=base,
attr_name=attr,
)

Expand Down

0 comments on commit 45e7669

Please sign in to comment.