initial port to python 3, not finished
[python-delta-tar] / runtests.py
1 #!/usr/bin/env python3
2
3 # Copyright (C) 2013 Intra2net AG
4 #
5 # This program is free software; you can redistribute it and/or modify
6 # it under the terms of the GNU Lesser General Public License as published
7 # by the Free Software Foundation; either version 3 of the License, or
8 # (at your option) any later version.
9 #
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 # GNU Lesser General Public License for more details.
14 #
15 # You should have received a copy of the GNU General Public License
16 # along with this program.  If not, see
17 # <http://www.gnu.org/licenses/lgpl-3.0.html>
18
19
20 import unittest
21
22 from testing.test_multivol import MultivolGnuFormatTest, MultivolPaxFormatTest
23 from testing.test_concat_compress import ConcatCompressTest
24 from testing.test_rescue_tar import RescueTarTest
25 from testing.test_encryption import EncryptionTest
26 from testing.test_deltatar import (DeltaTarTest, DeltaTar2Test,
27     DeltaTarStreamTest, DeltaTarGzipTest, DeltaTarGzipStreamTest,
28     DeltaTarGzipConcatTest, DeltaTarGzipAes128ConcatTest,
29     DeltaTarGzipAes256ConcatTest,
30     DeltaTarAes128ConcatTest, DeltaTarAes256ConcatTest
31     )
32
33 if __name__ == "__main__":
34     unittest.main()