Skip to content

Commit

Permalink
[sharktank] Skip testExportFfnNet on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
marbre committed Dec 16, 2024
1 parent 0804746 commit e10c30d
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions sharktank/tests/examples/main_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,17 @@
# See https://llvm.org/LICENSE.txt for license information.
# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception

import pytest
import sys
import unittest

from sharktank.utils.testing import MainRunnerTestBase


@pytest.skipif(
sys.platform == "win32",
reason="torch._dynamo.exc.Unsupported:"
)
class ShardingTests(MainRunnerTestBase):
def testExportFfnNet(self):
from sharktank.examples.sharding.export_ffn_net import main
Expand Down

0 comments on commit e10c30d

Please sign in to comment.