Registry / testing / testit-python-commons

testit-python-commons

JSON →
library4.2.5.post570pypypi✓ verified 85d ago

Python commons library for Test IT TMS (test management system). Provides integration adapters for test frameworks (pytest, unittest, etc.). Current version: 4.2.5.post570. Released frequently as part of Test IT adapters.

pip install testit-python-commons
INSTALL
IMPORT
SIG · TESTIT-PYTHON-COMM
T
testit-python-commons
testingpythonv4.2.5.post570
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

AdapterManager
from testit_python_commons.services.adapter_manager import AdapterManager
from testit.adapter_manager import AdapterManager
Wrong root module name
Configuration
from testit_python_commons.services.configuration import Configuration
import testit_config
Configuration class moved to services module

Basic usage: initialize AdapterManager and upload test results.

from testit_python_commons.services.adapter_manager import AdapterManager manager = AdapterManager( url='https://example.testit.software', private_token=os.environ.get('TESTIT_TOKEN', ''), project_id=os.environ.get('TESTIT_PROJECT_ID', '') ) manager.upload_test_results(case_results=[])
Debug
Known issues
breakingVersion 4.x breaking: configuration class moved to services module; adapter_manager API changed (see migration guide).
fix
Update imports: from testit_python_commons.services.adapter_manager import AdapterManager
affects: >=4.0.0
deprecatedThe testit-python-commons package is deprecated in favor of testit-adapter-python.
fix
Use testit-adapter-python directly for new projects; migrate existing code.
affects: all
gotchaPrivate token must be passed as named argument 'private_token', not positional. Incorrect order causes auth errors.
fix
Always use keyword arguments: AdapterManager(private_token='...').
affects: all
Errors
Common errors & fixes
ModuleNotFoundError: No module named 'testit_python_commons'
Package not installed or wrong import path.
fix
Run: pip install testit-python-commons
AttributeError: module 'testit_python_commons' has no attribute 'AdapterManager'
Importing from top-level package instead of submodule.
fix
Use: from testit_python_commons.services.adapter_manager import AdapterManager
Upgrade
Version history
4.2.5.post570latest on PyPI · released May 29, 2026
Audit
Dependencies

No dependency data recorded yet.

Agent activity
5 hits · last 30 days
node
4
Amazon
1
Resources
testit-python-commons — pip install testit-python-commons · libregistry