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

[REVIEW] Switch language from None to "en" in docs build #11133

Merged
merged 2 commits into from Jun 22, 2022
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/cudf/source/conf.py
Expand Up @@ -91,7 +91,7 @@
#
# This is also used if you do content translation via gettext catalogs.
# Usually you set "language" from the command line for these cases.
language = None
language = "en"

# List of patterns, relative to source directory, that match files and
# directories to ignore when looking for source files.
Expand Down
6 changes: 3 additions & 3 deletions python/cudf/cudf/tests/test_parquet.py
Expand Up @@ -2552,9 +2552,9 @@ def test_parquet_reader_zstd_compression(datadir):
pytest.mark.xfail(reason="zstd support is not enabled")


def test_read_parquet_multiple_files(datadir):
df_1_path = datadir / "df_1.parquet"
df_2_path = datadir / "df_2.parquet"
def test_read_parquet_multiple_files(tmpdir):
Copy link
Contributor Author

Choose a reason for hiding this comment

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

This shouldn't be a datadir, but should be a tmpdir. Fixed it in this PR as it is a trivial change.

df_1_path = tmpdir / "df_1.parquet"
df_2_path = tmpdir / "df_2.parquet"
df_1 = cudf.DataFrame({"id": range(100), "a": [1] * 100})
df_1.to_parquet(df_1_path)

Expand Down