Skip to content

Commit

Permalink
disable pytorch (#386)
Browse files Browse the repository at this point in the history
  • Loading branch information
NihalHarish committed Oct 23, 2020
1 parent 6884ee9 commit 311a6f4
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions tests/zero_code_change/test_pytorch_integration.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@

# Third Party
import pytest
import torch
import torch.nn as nn
import torch.nn.functional as F
import torch.optim as optim
Expand All @@ -22,6 +23,10 @@
from smdebug.core.utils import SagemakerSimulator, ScriptSimulator


@pytest.mark.skipif(
torch.__version__ == "1.7.0",
reason="Disabling the test temporarily until we root cause the version incompatibility",
)
@pytest.mark.parametrize("script_mode", [False])
@pytest.mark.parametrize("use_loss_module", [True, False])
def test_pytorch(script_mode, use_loss_module):
Expand Down

0 comments on commit 311a6f4

Please sign in to comment.