Skip to content

Commit

Permalink
[CI] Skip failing Caffe tests due to broken URL (#13228)
Browse files Browse the repository at this point in the history
See issue #13227.

Co-authored-by: driazati <9407960+driazati@users.noreply.github.com>
  • Loading branch information
lhutton1 and driazati authored Nov 2, 2022
1 parent 7536068 commit 84fadc4
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions tests/python/frontend/caffe/test_forward.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
import os
import logging
import numpy as np
import pytest

from google.protobuf import text_format
import caffe
Expand Down Expand Up @@ -1092,6 +1093,7 @@ def _test_alexnet(data):
_test_network(data_process, proto_file, blob_file)


@pytest.mark.skip(reason="See https://github.com/apache/tvm/issues/13227")
def test_forward_Alexnet():
"""Alexnet"""
data = np.random.randint(0, 256, size=(1, 3, 227, 227)).astype(np.float32)
Expand Down Expand Up @@ -1153,6 +1155,7 @@ def _test_inceptionv1(data):
_test_network(data_process, proto_file, blob_file)


@pytest.mark.skip(reason="See issue https://github.com/apache/tvm/issues/13227")
def test_forward_Inceptionv1():
"""Inceptionv4"""
data = np.random.randint(0, 256, size=(1, 3, 224, 224)).astype(np.float32)
Expand Down

0 comments on commit 84fadc4

Please sign in to comment.