Skip to content
This repository has been archived by the owner on Nov 17, 2023. It is now read-only.

Disable test_composite_embedding_with_one_embedding #18383

Merged
merged 1 commit into from
May 26, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions tests/python/unittest/test_contrib_text.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,16 +17,15 @@

# coding: utf-8

from __future__ import absolute_import
from __future__ import print_function

from collections import Counter

from common import assertRaises
from mxnet import ndarray as nd
from mxnet.test_utils import *
from mxnet.contrib import text

import pytest


def _get_test_str_of_tokens(token_delim, seq_delim):
seq1 = token_delim + token_delim.join(['Life', 'is', 'great', '!']) + token_delim + seq_delim
Expand Down Expand Up @@ -518,6 +517,7 @@ def test_custom_embedding_with_vocabulary():
)


@pytest.mark.skip(reason='https://github.com/apache/incubator-mxnet/issues/18282')
def test_composite_embedding_with_one_embedding():
embed_root = 'embeddings'
embed_name = 'my_embed'
Expand Down