Skip to content
This repository has been archived by the owner on Jun 24, 2020. It is now read-only.

Commit

Permalink
fix: imports in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Nathan Zylbersztejn committed Jun 20, 2019
1 parent c15da0b commit 35528e3
Show file tree
Hide file tree
Showing 9 changed files with 6 additions and 79 deletions.
Empty file.
41 changes: 0 additions & 41 deletions rasa_addons/nlu/components/fuzzy_matcher/process.py

This file was deleted.

4 changes: 1 addition & 3 deletions requirements.txt
@@ -1,6 +1,4 @@
pyyaml
jsonmerge
schema==0.6.8
requests
requests_futures
editdistance
fuzzy_matcher
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -11,7 +11,7 @@
description="Rasa Addons - Components for Rasa",
long_description=long_description,
long_description_content_type="text/markdown",
install_requires=['jsonmerge', 'pyyaml', 'schema', 'requests', 'requests_futures', 'editdistance'],
install_requires=['pyyaml', 'requests', 'requests_futures', 'fuzzy_matcher'],
packages=find_packages(exclude=["tests"]),
licence='Apache 2.0',
url='https://botfront.io',
Expand Down
30 changes: 0 additions & 30 deletions tests/nlu/test_fuzzy_matcher.py

This file was deleted.

2 changes: 1 addition & 1 deletion tests/nlu/test_postprocessors.py
Expand Up @@ -3,7 +3,7 @@
from __future__ import print_function
from __future__ import unicode_literals

from rasa_addons.nlu.components import Gazette
from rasa_addons.nlu.components.gazette import Gazette
from rasa.nlu.training_data.message import Message

from pytest import raises
Expand Down
2 changes: 1 addition & 1 deletion tests/nlu/test_preprocessors.py
Expand Up @@ -3,7 +3,7 @@
from __future__ import print_function
from __future__ import unicode_literals

from rasa_addons.nlu.components import BingSpellCheck
from rasa_addons.nlu.components.spell_check import BingSpellCheck
from rasa.nlu.training_data.message import Message


Expand Down
2 changes: 1 addition & 1 deletion tests/nlu/test_sweeper.py
Expand Up @@ -3,7 +3,7 @@
from __future__ import print_function
from __future__ import unicode_literals

from rasa_addons.nlu.components import Sweeper
from rasa_addons.nlu.components.sweeper import Sweeper
from rasa.nlu.training_data.message import Message
from pytest import raises

Expand Down
2 changes: 1 addition & 1 deletion tests/nlu/test_synonyms.py
Expand Up @@ -3,7 +3,7 @@
from __future__ import print_function
from __future__ import unicode_literals

from rasa_addons.nlu.components import EntitySynonymBegin, EntitySynonymEnd
from rasa_addons.nlu.components.entity_synonyms_endpoints import EntitySynonymBegin, EntitySynonymEnd
from rasa.nlu.training_data.message import Message

from pytest import raises
Expand Down

0 comments on commit 35528e3

Please sign in to comment.