Skip to content

Commit

Permalink
Make mypy happy
Browse files Browse the repository at this point in the history
  • Loading branch information
IgorSusmelj committed May 22, 2024
1 parent 3a2b2be commit c691301
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/utils/test_dist__gather__benchmark_module.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ def close_torch_distributed() -> Generator[None, None, None]:


@pytest.mark.skipif(
os.getenv("GITHUB_ACTIONS"),
os.getenv("GITHUB_ACTIONS") is not None,
reason="This test is running in parallel and breaks codecov",
)
class TestGatherLayerBenchmarkModule:
Expand Down
2 changes: 1 addition & 1 deletion tests/utils/test_dist__gather__losses.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ def close_torch_distributed() -> Generator[None, None, None]:


@pytest.mark.skipif(
os.getenv("GITHUB_ACTIONS"),
os.getenv("GITHUB_ACTIONS") is not None,
reason="This test is running in parallel and breaks codecov",
)
class TestGatherLayer_Losses:
Expand Down

0 comments on commit c691301

Please sign in to comment.