Skip to content

Commit

Permalink
fix: adjust cpu count
Browse files Browse the repository at this point in the history
Signed-off-by: Abdel Jaidi <[email protected]>
  • Loading branch information
jaidisido committed Jul 31, 2023
1 parent 2d4bec9 commit e16799d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/unit/test_s3_text.py
Original file line number Diff line number Diff line change
Expand Up @@ -375,7 +375,7 @@ def test_read_json_versioned(path) -> None:
version_ids.append(version_id)

for df, version_id in zip(dfs, version_ids):
df_temp = wr.s3.read_json(path_file, version_id=version_id, ray_args={"parallelism": 1})
df_temp = wr.s3.read_json(path_file, version_id=version_id).reset_index(drop=True)
assert df_temp.equals(df)
assert version_id == wr.s3.describe_objects(path=path_file, version_id=version_id)[path_file]["VersionId"]

Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ passenv =
AWS_SESSION_TOKEN
setenv =
COV_FAIL_UNDER = 74.00
WR_CPU_COUNT = 4
WR_CPU_COUNT = 16
allowlist_externals = poetry
commands_pre =
poetry install --no-root --sync --all-extras
Expand Down

0 comments on commit e16799d

Please sign in to comment.