Skip to content

Commit

Permalink
increase deadline for test (#513)
Browse files Browse the repository at this point in the history
Summary: Pull Request resolved: #513

Reviewed By: ashkan-software

Differential Revision: D39636639

fbshipit-source-id: 115e3f946cceccbe368d98574e591c58db045d74
  • Loading branch information
karthikprasad authored and facebook-github-bot committed Sep 26, 2022
1 parent 60cd993 commit 5e632cd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions opacus/tests/grad_samples/conv2d_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ class Conv2d_test(GradSampleHooks_test):
dilation=st.integers(1, 3),
groups=st.integers(1, 16),
)
@settings(deadline=10000)
@settings(deadline=30000)
def test_conv2d(
self,
N: int,
Expand Down Expand Up @@ -117,7 +117,7 @@ def test_conv2d(
dilation_h=st.integers(1, 3),
dilation_w=st.integers(1, 3),
)
@settings(deadline=10000)
@settings(deadline=30000)
def test_unfold2d(
self,
B: int,
Expand Down
2 changes: 1 addition & 1 deletion opacus/tests/grad_samples/conv3d_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ class Conv3d_test(GradSampleHooks_test):
dilation=st.sampled_from([1, (1, 2, 2)]),
groups=st.integers(1, 16),
)
@settings(deadline=10000)
@settings(deadline=30000)
def test_conv3d(
self,
N: int,
Expand Down

0 comments on commit 5e632cd

Please sign in to comment.