Skip to content
Snippets Groups Projects
Commit 9983319a authored by Piotr Maślanka's avatar Piotr Maślanka
Browse files

ver bump

parent c370bb38
No related branches found
No related tags found
No related merge requests found
# v2.3.7
* _TBA_
# v2.3.6 # v2.3.6
* bugfix release - wrong annotation mechanics * bugfix release - wrong annotation mechanics
......
# coding=UTF-8 __version__ = '2.3.7rc1'
__version__ = '2.3.6'
# coding=UTF-8
""" """
All things related to: All things related to:
* post-mortem reporting * post-mortem reporting
* on-line reporting * on-line reporting
""" """
from __future__ import print_function, absolute_import, division
from .dump_frames_on import install_dump_frames_on from .dump_frames_on import install_dump_frames_on
from .trace_back import Traceback, StoredVariableValue, StackFrame, GenerationPolicy from .trace_back import Traceback, StoredVariableValue, StackFrame, GenerationPolicy
......
# coding=UTF-8
from setuptools import setup, find_packages from setuptools import setup, find_packages
from satella import __version__ from satella import __version__
......
...@@ -84,7 +84,6 @@ class TestMetric(unittest.TestCase): ...@@ -84,7 +84,6 @@ class TestMetric(unittest.TestCase):
def testInheritance(self): def testInheritance(self):
metric = getMetric('root.test.FloatValue', 'float', INHERIT, enable_timestamp=False) metric = getMetric('root.test.FloatValue', 'float', INHERIT, enable_timestamp=False)
logger.warning('After')
metric.runtime(2.0) metric.runtime(2.0)
metric_parent = getMetric('root.test', enable_timestamp=False) metric_parent = getMetric('root.test', enable_timestamp=False)
......
# coding=UTF-8
from satella.posix import hang_until_sig from satella.posix import hang_until_sig
if __name__ == '__main__': if __name__ == '__main__':
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment