File: test_api.py

package info (click to toggle)
python-ete3 3.1.2%2Bdfsg-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 14,148 kB
  • sloc: python: 52,375; javascript: 12,959; xml: 4,903; ansic: 69; sql: 65; makefile: 26; sh: 7
file content (23 lines) | stat: -rw-r--r-- 463 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from __future__ import absolute_import

import unittest
from .datasets import *
from .test_tree import *
from .test_interop import *
from .test_seqgroup import *
from .test_phylotree import *
from .test_ncbiquery import *

from .test_arraytable import *
from .test_clustertree import *

from .test_evol import *
#from .test_xml_parsers import *

from .test_treeview.test_all_treeview import *

def run():
    unittest.main()

if __name__ == '__main__':
    run()