mirror of
https://github.com/borgbackup/borg.git
synced 2024-12-26 09:47:58 +00:00
10 lines
168 B
Python
10 lines
168 B
Python
import unittest
|
|
from attic.testsuite import TestLoader
|
|
|
|
|
|
def main():
|
|
unittest.main(testLoader=TestLoader(), defaultTest='')
|
|
|
|
|
|
if __name__ == '__main__':
|
|
main()
|