Move folders

This commit is contained in:
Andras Schmelczer 2022-07-04 18:54:32 +02:00
parent ba2e252759
commit 3cf28379e8
89 changed files with 47 additions and 31 deletions

View file

@ -2,7 +2,7 @@ import unittest
import pytest
from src.utilities import chunk
from src.great_ai.utilities import chunk
class TestChunk(unittest.TestCase):

View file

@ -1,6 +1,6 @@
import unittest
from src.utilities import clean
from src.great_ai.utilities import clean
class TestClean(unittest.TestCase):

View file

@ -4,7 +4,7 @@ from pathlib import Path
import pytest
from src.utilities import ConfigFile
from src.great_ai.utilities import ConfigFile
DATA_PATH = Path(__file__).parent.resolve() / "data"

View file

@ -5,7 +5,7 @@ import matplotlib
matplotlib.use("Agg") # don't show a window for each test
from src.utilities import evaluate_ranking
from src.great_ai.utilities import evaluate_ranking
class TestEvaluateRanking(unittest.TestCase):

View file

@ -1,6 +1,6 @@
import unittest
from src.utilities import get_sentences
from src.great_ai.utilities import get_sentences
class TestGetSentences(unittest.TestCase):

View file

@ -1,6 +1,10 @@
import unittest
from src.utilities import english_name_of_language, is_english, predict_language
from src.great_ai.utilities import (
english_name_of_language,
is_english,
predict_language,
)
class TestLanguage(unittest.TestCase):

View file

@ -1,6 +1,6 @@
import unittest
from src.utilities import match_names
from src.great_ai.utilities import match_names
class TestMatchNames(unittest.TestCase):

View file

@ -2,7 +2,7 @@ import unittest
import pytest
from src.utilities import WorkerException, parallel_map
from src.great_ai.utilities import WorkerException, parallel_map
COUNT = int(1e5) + 3

View file

@ -2,7 +2,7 @@ import unittest
import pytest
from src.utilities import WorkerException, threaded_parallel_map
from src.great_ai.utilities import WorkerException, threaded_parallel_map
COUNT = int(1e5) + 3

View file

@ -1,6 +1,6 @@
import unittest
from src.utilities import unique
from src.great_ai.utilities import unique
original = [
("a", 1),