Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion testit-adapter-behave/setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from setuptools import find_packages, setup

VERSION = "4.2.12"
VERSION = "5.0.0"

setup(
name='testit-adapter-behave',
Expand Down
2 changes: 1 addition & 1 deletion testit-adapter-nose/setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from setuptools import setup, find_packages

VERSION = "4.2.12"
VERSION = "5.0.0"

setup(
name='testit-adapter-nose',
Expand Down
2 changes: 1 addition & 1 deletion testit-adapter-pytest/setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from setuptools import find_packages, setup

VERSION = "4.2.12"
VERSION = "5.0.0"

setup(
name='testit-adapter-pytest',
Expand Down
2 changes: 1 addition & 1 deletion testit-adapter-robotframework/setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from setuptools import find_packages, setup

VERSION = "4.2.12"
VERSION = "5.0.0"

setup(
name='testit-adapter-robotframework',
Expand Down
4 changes: 2 additions & 2 deletions testit-python-commons/setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from setuptools import find_packages, setup

VERSION = "4.2.12"
VERSION = "5.0.0"

setup(
name='testit-python-commons',
Expand All @@ -25,5 +25,5 @@
py_modules=['testit', 'testit_python_commons'],
packages=find_packages(where='src'),
package_dir={'': 'src'},
install_requires=['pluggy', 'tomli', 'testit-api-client==7.5.12']
install_requires=['pluggy', 'tomli', 'urllib3', 'python-dateutil']
)
27 changes: 27 additions & 0 deletions testit-python-commons/src/api_client_adapters/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# flake8: noqa

"""
API

No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) # noqa: E501

The version of the OpenAPI document: adapters
Generated by: https://openapi-generator.tech
"""


__version__ = "1.0.0"

# import ApiClient
from api_client_adapters.api_client import ApiClient

# import Configuration
from api_client_adapters.configuration import Configuration

# import exceptions
from api_client_adapters.exceptions import OpenApiException
from api_client_adapters.exceptions import ApiAttributeError
from api_client_adapters.exceptions import ApiTypeError
from api_client_adapters.exceptions import ApiValueError
from api_client_adapters.exceptions import ApiKeyError
from api_client_adapters.exceptions import ApiException
3 changes: 3 additions & 0 deletions testit-python-commons/src/api_client_adapters/api/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# do not import all apis into this module because that uses a lot of memory and stack frames
# if you need the ability to import all apis from one package, import them with
# from api_client_adapters.apis import AttachmentsApi
Loading
Loading