Skip to content

Commit

Permalink
#156 making TestOtputFormatters test optional
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolay-r committed Jan 21, 2023
1 parent 788ca0a commit 08a68fe
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
3 changes: 2 additions & 1 deletion tests/contrib/networks/indices_feature.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import numpy as np
import utils

from tests.contrib.networks import utils


class IndicesFeature:
Expand Down
3 changes: 1 addition & 2 deletions tests/contrib/utils/test_output.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,11 +69,10 @@ def load_collection(stemmer, is_read_only=True, debug=False, version=RuSentRelVe
class TestOutputFormatters(unittest.TestCase):

__current_dir = dirname(__file__)
__input_samples_filepath = join(__current_dir, "test_data/sample-train.tsv.gz")
__input_opinions_filepath = join(__current_dir, "test_data/opinion-train.tsv.gz")
__output_filepath = join(__current_dir, "test_data/output.tsv.gz")

def test_output_formatter(self):
def optional_test_output_formatter(self):

stemmer = MystemWrapper()
synonyms = RuSentRelSynonymsCollectionProvider.load_collection(stemmer=stemmer)
Expand Down

0 comments on commit 08a68fe

Please sign in to comment.