Skip to content

Commit

Permalink
Updated setup, version, test assertion
Browse files Browse the repository at this point in the history
Signed-off-by: Saurabh Sinha <[email protected]>
  • Loading branch information
sinha108 committed Sep 28, 2023
1 parent cba125e commit f3d8a9c
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 12 deletions.
10 changes: 0 additions & 10 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,13 +1,3 @@
;[nosetests]
;verbosity = 2
;with-coverage = true
;cover-erase = true
;cover-package = tkltest
;cover-branches = true
;cover-html = true
;cover-html-dir = test/coverage
;cover-inclusive = true

[green]
verbose = 3
processes = 1
Expand Down
2 changes: 1 addition & 1 deletion test/unit/test_generate_execute.py
Original file line number Diff line number Diff line change
Expand Up @@ -1012,7 +1012,7 @@ def __assert_augment_resources(self, app_name, test_directory, orig_test_directo
if entities_missed+entities_covered > 0:
coverage_rate = entities_covered / (entities_missed+entities_covered)
print(f'coverage rate = {coverage_rate}')
self.assertGreater(coverage_rate, 0.95)
self.assertGreater(coverage_rate, 0.9)
# self.assertTrue(coverage_counter[0].attrib['missed'] == '0')

self.__assert_no_artifact_at_cli()
Expand Down
2 changes: 1 addition & 1 deletion tkltest/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '2.4.4'
__version__ = '2.4.5'

0 comments on commit f3d8a9c

Please sign in to comment.