mirror of
https://github.com/markqvist/Reticulum.git
synced 2024-11-05 13:50:14 +00:00
44dc2d06c6
Also print name in each test
10 lines
232 B
Python
10 lines
232 B
Python
import unittest
|
|
|
|
from .hashes import TestSHA256
|
|
from .hashes import TestSHA512
|
|
from .identity import TestIdentity
|
|
from .link import TestLink
|
|
from .channel import TestChannel
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main(verbosity=2) |