mirror of
https://github.com/aljazceru/bitfinex-api-py.git
synced 2025-12-19 06:44:22 +01:00
16 lines
453 B
Python
16 lines
453 B
Python
import unittest
|
|
|
|
from .test_types_labeler import TestTypesLabeler
|
|
from .test_types_notification import TestTypesNotification
|
|
from .test_types_serializers import TestTypesSerializers
|
|
|
|
def suite():
|
|
return unittest.TestSuite([
|
|
unittest.makeSuite(TestTypesLabeler),
|
|
unittest.makeSuite(TestTypesNotification),
|
|
unittest.makeSuite(TestTypesSerializers),
|
|
])
|
|
|
|
if __name__ == "__main__":
|
|
unittest.TextTestRunner().run(suite())
|