testit-adapter-nose 3.9.0__tar.gz → 3.9.1__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 (16) hide show
  1. {testit_adapter_nose-3.9.0 → testit_adapter_nose-3.9.1}/PKG-INFO +2 -2
  2. {testit_adapter_nose-3.9.0 → testit_adapter_nose-3.9.1}/setup.py +1 -1
  3. {testit_adapter_nose-3.9.0 → testit_adapter_nose-3.9.1}/src/testit_adapter_nose/utils.py +2 -2
  4. {testit_adapter_nose-3.9.0 → testit_adapter_nose-3.9.1}/src/testit_adapter_nose.egg-info/PKG-INFO +2 -2
  5. testit_adapter_nose-3.9.1/src/testit_adapter_nose.egg-info/requires.txt +3 -0
  6. testit_adapter_nose-3.9.0/src/testit_adapter_nose.egg-info/requires.txt +0 -3
  7. {testit_adapter_nose-3.9.0 → testit_adapter_nose-3.9.1}/README.md +0 -0
  8. {testit_adapter_nose-3.9.0 → testit_adapter_nose-3.9.1}/setup.cfg +0 -0
  9. {testit_adapter_nose-3.9.0 → testit_adapter_nose-3.9.1}/src/testit_adapter_nose/__init__.py +0 -0
  10. {testit_adapter_nose-3.9.0 → testit_adapter_nose-3.9.1}/src/testit_adapter_nose/listener.py +0 -0
  11. {testit_adapter_nose-3.9.0 → testit_adapter_nose-3.9.1}/src/testit_adapter_nose/plugin.py +0 -0
  12. {testit_adapter_nose-3.9.0 → testit_adapter_nose-3.9.1}/src/testit_adapter_nose.egg-info/SOURCES.txt +0 -0
  13. {testit_adapter_nose-3.9.0 → testit_adapter_nose-3.9.1}/src/testit_adapter_nose.egg-info/dependency_links.txt +0 -0
  14. {testit_adapter_nose-3.9.0 → testit_adapter_nose-3.9.1}/src/testit_adapter_nose.egg-info/entry_points.txt +0 -0
  15. {testit_adapter_nose-3.9.0 → testit_adapter_nose-3.9.1}/src/testit_adapter_nose.egg-info/top_level.txt +0 -0
  16. {testit_adapter_nose-3.9.0 → testit_adapter_nose-3.9.1}/tests/test_plugin.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: testit-adapter-nose
3
- Version: 3.9.0
3
+ Version: 3.9.1
4
4
  Summary: Nose adapter for Test IT
5
5
  Home-page: https://github.com/testit-tms/adapters-python/
6
6
  Author: Integration team
@@ -17,7 +17,7 @@ Classifier: Programming Language :: Python :: 3.12
17
17
  Description-Content-Type: text/markdown
18
18
  Requires-Dist: attrs
19
19
  Requires-Dist: nose2
20
- Requires-Dist: testit-python-commons==3.9.0
20
+ Requires-Dist: testit-python-commons==3.9.1
21
21
  Dynamic: author
22
22
  Dynamic: author-email
23
23
  Dynamic: classifier
@@ -1,6 +1,6 @@
1
1
  from setuptools import setup, find_packages
2
2
 
3
- VERSION = "3.9.0"
3
+ VERSION = "3.9.1"
4
4
 
5
5
  setup(
6
6
  name='testit-adapter-nose',
@@ -2,7 +2,7 @@ import hashlib
2
2
  import logging
3
3
  import re
4
4
  import os
5
- import typing
5
+ from typing import List
6
6
  from traceback import format_exception_only
7
7
  from nose2 import (
8
8
  util,
@@ -260,7 +260,7 @@ def __convert_absolute_module_path_to_nose_module_node(absolute_module_path: str
260
260
  return directories_in_project.replace(os.sep, '.')
261
261
 
262
262
 
263
- def __join_nose_test_node(test_node_parts: typing.List[str]):
263
+ def __join_nose_test_node(test_node_parts: List[str]):
264
264
  return ".".join(test_node_parts)
265
265
 
266
266
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: testit-adapter-nose
3
- Version: 3.9.0
3
+ Version: 3.9.1
4
4
  Summary: Nose adapter for Test IT
5
5
  Home-page: https://github.com/testit-tms/adapters-python/
6
6
  Author: Integration team
@@ -17,7 +17,7 @@ Classifier: Programming Language :: Python :: 3.12
17
17
  Description-Content-Type: text/markdown
18
18
  Requires-Dist: attrs
19
19
  Requires-Dist: nose2
20
- Requires-Dist: testit-python-commons==3.9.0
20
+ Requires-Dist: testit-python-commons==3.9.1
21
21
  Dynamic: author
22
22
  Dynamic: author-email
23
23
  Dynamic: classifier
@@ -0,0 +1,3 @@
1
+ attrs
2
+ nose2
3
+ testit-python-commons==3.9.1
@@ -1,3 +0,0 @@
1
- attrs
2
- nose2
3
- testit-python-commons==3.9.0