latex template improved, unittest status moved to bin.
This commit is contained in:
parent
c2056035dc
commit
5b65944774
@ -1,4 +1,4 @@
|
|||||||
\documentclass[10pt, a4paper,oneside]{article}
|
\documentclass[12pt, a4paper,oneside]{article}
|
||||||
|
|
||||||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||||
% alle benötigten Pakete werden hier eingebunden
|
% alle benötigten Pakete werden hier eingebunden
|
||||||
|
17
unittest_status
Executable file
17
unittest_status
Executable file
@ -0,0 +1,17 @@
|
|||||||
|
#!/usr/bin/python3
|
||||||
|
#
|
||||||
|
|
||||||
|
import os
|
||||||
|
import sys
|
||||||
|
MY_PATH = os.path.abspath('.')
|
||||||
|
sys.path.insert(0, os.path.join(MY_PATH, 'report', 'pylibs'))
|
||||||
|
|
||||||
|
import unittest
|
||||||
|
import fstools
|
||||||
|
|
||||||
|
|
||||||
|
module_pathes = fstools.dirlist(MY_PATH, rekursive=False)
|
||||||
|
module_pathes.sort()
|
||||||
|
sys.stdout.write(unittest.module_status.module_status_head())
|
||||||
|
for module_path in module_pathes:
|
||||||
|
sys.stdout.write(unittest.module_status.module_status_line(module_path))
|
Loading…
x
Reference in New Issue
Block a user