Spaces:
Runtime error
Runtime error
Added test folder with some tests for the scraper and a file to start writing in for the classifier
f8ad876
import unittest | |
import pandas as pd | |
from datetime import datetime | |
import sys | |
from pathlib import Path | |
sys.path.insert(0, str(Path(__file__).parents[1]) + "/textclassifier") | |
from TextClassifier import TextClassifier | |
class MyTestCase(unittest.TestCase): | |
def test_something(self): | |
self.assertEqual(True, False) # add assertion here | |
if __name__ == '__main__': | |
unittest.main() | |