Skip to content

Commit

Permalink
Fix test_subgraph skipif (apache#18361)
Browse files Browse the repository at this point in the history
  • Loading branch information
leezu authored and AntiZpvoh committed Jul 6, 2020
1 parent 9f2a267 commit f8da35b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/python/unittest/test_extensions.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ def test_custom_op():
assert_almost_equal(in_grad_base[0].asnumpy(), in_grad2[0].asnumpy(), rtol=1e-3, atol=1e-3)

@pytest.mark.skipif(check_platform(), reason="not all machine types supported")
@pytest.mark.skipIf(is_cd_run(), reason="continuous delivery run - ignoring test")
@pytest.mark.skipif(is_cd_run(), reason="continuous delivery run - ignoring test")
def test_subgraph():
# possible places to find library file
if (os.name=='posix'):
Expand Down

0 comments on commit f8da35b

Please sign in to comment.