support both gtts and aws polly (we borrow from the streamlabs api) moved some configuration stuff around added one test method for creating file names, but it doesn't have any assertions, so it's useless added enums for different configuration properties like tts engine, file naming, and poly voices
13 lines
187 B
Python
13 lines
187 B
Python
import unittest
|
|
|
|
import tts
|
|
|
|
class TTSTest(unittest.TestCase):
|
|
|
|
def test_file_name(self):
|
|
tts.create_file_name("test", "mp3")
|
|
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|