pUnit 1.3.0__tar.gz → 1.3.2__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (41) hide show
  1. {punit-1.3.0/src/pUnit.egg-info → punit-1.3.2}/PKG-INFO +1 -1
  2. {punit-1.3.0 → punit-1.3.2}/pyproject.toml +1 -1
  3. {punit-1.3.0 → punit-1.3.2/src/pUnit.egg-info}/PKG-INFO +1 -1
  4. {punit-1.3.0 → punit-1.3.2}/src/punit/TestResult.py +1 -1
  5. {punit-1.3.0 → punit-1.3.2}/src/punit/__init__.py +2 -2
  6. {punit-1.3.0 → punit-1.3.2}/src/punit/reports/HtmlReportGenerator.py +7 -3
  7. {punit-1.3.0 → punit-1.3.2}/src/punit/reports/JsonReportGenerator.py +8 -1
  8. {punit-1.3.0 → punit-1.3.2}/.scripts/punit +0 -0
  9. {punit-1.3.0 → punit-1.3.2}/LICENSE +0 -0
  10. {punit-1.3.0 → punit-1.3.2}/README.md +0 -0
  11. {punit-1.3.0 → punit-1.3.2}/setup.cfg +0 -0
  12. {punit-1.3.0 → punit-1.3.2}/src/pUnit.egg-info/SOURCES.txt +0 -0
  13. {punit-1.3.0 → punit-1.3.2}/src/pUnit.egg-info/dependency_links.txt +0 -0
  14. {punit-1.3.0 → punit-1.3.2}/src/pUnit.egg-info/requires.txt +0 -0
  15. {punit-1.3.0 → punit-1.3.2}/src/pUnit.egg-info/top_level.txt +0 -0
  16. {punit-1.3.0 → punit-1.3.2}/src/punit/__main__.py +0 -0
  17. {punit-1.3.0 → punit-1.3.2}/src/punit/assertions/__init__.py +0 -0
  18. {punit-1.3.0 → punit-1.3.2}/src/punit/assertions/collections.py +0 -0
  19. {punit-1.3.0 → punit-1.3.2}/src/punit/assertions/exceptions.py +0 -0
  20. {punit-1.3.0 → punit-1.3.2}/src/punit/assertions/strings.py +0 -0
  21. {punit-1.3.0 → punit-1.3.2}/src/punit/cli.py +0 -0
  22. {punit-1.3.0 → punit-1.3.2}/src/punit/discovery/TestModuleDiscovery.py +0 -0
  23. {punit-1.3.0 → punit-1.3.2}/src/punit/discovery/__init__.py +0 -0
  24. {punit-1.3.0 → punit-1.3.2}/src/punit/facts/Fact.py +0 -0
  25. {punit-1.3.0 → punit-1.3.2}/src/punit/facts/FactManager.py +0 -0
  26. {punit-1.3.0 → punit-1.3.2}/src/punit/facts/__init__.py +0 -0
  27. {punit-1.3.0 → punit-1.3.2}/src/punit/filters/Filter.py +0 -0
  28. {punit-1.3.0 → punit-1.3.2}/src/punit/filters/FilterManager.py +0 -0
  29. {punit-1.3.0 → punit-1.3.2}/src/punit/filters/__init__.py +0 -0
  30. {punit-1.3.0 → punit-1.3.2}/src/punit/metadata/CallableMetadata.py +0 -0
  31. {punit-1.3.0 → punit-1.3.2}/src/punit/metadata/__init__.py +0 -0
  32. {punit-1.3.0 → punit-1.3.2}/src/punit/py.typed +0 -0
  33. {punit-1.3.0 → punit-1.3.2}/src/punit/reports/JUnitReportGenerator.py +0 -0
  34. {punit-1.3.0 → punit-1.3.2}/src/punit/reports/__init__.py +0 -0
  35. {punit-1.3.0 → punit-1.3.2}/src/punit/runner.py +0 -0
  36. {punit-1.3.0 → punit-1.3.2}/src/punit/theories/Theory.py +0 -0
  37. {punit-1.3.0 → punit-1.3.2}/src/punit/theories/TheoryManager.py +0 -0
  38. {punit-1.3.0 → punit-1.3.2}/src/punit/theories/__init__.py +0 -0
  39. {punit-1.3.0 → punit-1.3.2}/src/punit/traits/Trait.py +0 -0
  40. {punit-1.3.0 → punit-1.3.2}/src/punit/traits/TraitManager.py +0 -0
  41. {punit-1.3.0 → punit-1.3.2}/src/punit/traits/__init__.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pUnit
3
- Version: 1.3.0
3
+ Version: 1.3.2
4
4
  Summary: A modernized unit-test framework for Python.
5
5
  Author-email: Shaun Wilson <mrshaunwilson@msn.com>
6
6
  License: MIT License
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "pUnit"
3
- version = "1.3.0"
3
+ version = "1.3.2"
4
4
  description = "A modernized unit-test framework for Python."
5
5
  keywords = ["test", "unittest", "unit-test", "xUnit", "nUnit", "pytest"]
6
6
  authors = [
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pUnit
3
- Version: 1.3.0
3
+ Version: 1.3.2
4
4
  Summary: A modernized unit-test framework for Python.
5
5
  Author-email: Shaun Wilson <mrshaunwilson@msn.com>
6
6
  License: MIT License
@@ -60,7 +60,7 @@ class TestResult:
60
60
 
61
61
  @property
62
62
  def className(self) -> Optional[str]:
63
- return self.__className
63
+ return self.__className if self.__className is not None and len(self.__className) > 0 else None
64
64
 
65
65
  @className.setter
66
66
  def className(self, value:Optional[str]) -> None:
@@ -7,8 +7,8 @@ from .theories import *
7
7
  from .traits import *
8
8
 
9
9
 
10
- __version__ = '1.3.0'
11
- __commit__ = 'fb51d5e'
10
+ __version__ = '1.3.2'
11
+ __commit__ = '55dd2d1'
12
12
  __all__ = [
13
13
  '__version__', '__commit__',
14
14
  'assertions',
@@ -60,14 +60,18 @@ class HtmlReportGenerator:
60
60
  lines.append('</div>')
61
61
  lines.append('<div class="testresults-module">')
62
62
  lines.append(f'<h2 class="module-name">{testResult.packageName}/{testResult.moduleName}</h2>')
63
- currentModuleName = testResult.moduleName
63
+ currentModuleName = testResult.moduleName
64
64
  passfailstyle = '-pass' if testResult.isSuccess else '-fail'
65
65
  passfailglyph = '🟩' if testResult.isSuccess else '🟥'
66
66
  lines.append(f'<div class="testresult testresult{passfailstyle}">')
67
67
  lines.append('<div class="testresult-heading">')
68
68
  lines.append(f'<span class="glyph glyph{passfailstyle}">{passfailglyph}</span>')
69
- lines.append(f'<span class="test-class">{"" if testResult.className is None else testResult.className}</span>')
70
- lines.append(f'<span class="test-name">{testResult.testName}</span>')
69
+ className = "" if testResult.className is None else f"{testResult.className}."
70
+ data = testResult.properties.get('data')
71
+ if data is not None and len(data) > 0:
72
+ lines.append(f'<span class="test-class">{className}</span><span class="test-name">{testResult.testName}{data}</span>')
73
+ else:
74
+ lines.append(f'<span class="test-class">{className}</span><span class="test-name">{testResult.testName}</span>')
71
75
  lines.append(f'<span class="test-time test-time{passfailstyle}">{testResult.tookPretty}</span>')
72
76
  lines.append('</div>')
73
77
  if not testResult.isSuccess or testResult.stdout is not None or testResult.stderr is not None:
@@ -15,9 +15,16 @@ class JsonReportGenerator:
15
15
  testResults.sort(key=lambda e : e.moduleName)
16
16
  results = list[dict[str, Any]]()
17
17
  for testResult in testResults:
18
+ filterName:str = f'{testResult.packageName}/{testResult.moduleName}'
19
+ if testResult.className is not None:
20
+ filterName = f'{filterName}/{testResult.className}'
21
+ filterName = f'{filterName}/{testResult.testName}'
22
+ data = testResult.properties.get('data')
23
+ if data is not None and len(data) > 0:
24
+ filterName = f'{filterName}{data}'
18
25
  result = dict[str, Any]({
19
26
  'status': 'pass' if testResult.isSuccess else 'fail',
20
- 'name': testResult.testName,
27
+ 'name': filterName,
21
28
  })
22
29
  if testResult.took is not None:
23
30
  result['took'] = round(testResult.took * 1000, 3)
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes