pytest-exasol-extension 0.2.0__tar.gz → 0.2.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.
- {pytest_exasol_extension-0.2.0 → pytest_exasol_extension-0.2.2}/PKG-INFO +1 -1
- {pytest_exasol_extension-0.2.0 → pytest_exasol_extension-0.2.2}/exasol/pytest_extension/__init__.py +2 -1
- {pytest_exasol_extension-0.2.0 → pytest_exasol_extension-0.2.2}/exasol/pytest_extension/version.py +3 -3
- {pytest_exasol_extension-0.2.0 → pytest_exasol_extension-0.2.2}/pyproject.toml +3 -3
- {pytest_exasol_extension-0.2.0 → pytest_exasol_extension-0.2.2}/README.md +0 -0
{pytest_exasol_extension-0.2.0 → pytest_exasol_extension-0.2.2}/exasol/pytest_extension/__init__.py
RENAMED
|
@@ -159,6 +159,7 @@ def bucketfs_std_params(backend,
|
|
|
159
159
|
|
|
160
160
|
def _cli_params_to_args(cli_params) -> str:
|
|
161
161
|
def arg_string(k: str, v: Any):
|
|
162
|
+
# This should have been implemented as a method of StdParams.
|
|
162
163
|
k = k.replace("_", "-")
|
|
163
164
|
if isinstance(v, bool):
|
|
164
165
|
return f'--{k}' if v else f'--no-{k}'
|
|
@@ -191,4 +192,4 @@ def cli_args(database_std_params, bucketfs_std_params):
|
|
|
191
192
|
"""
|
|
192
193
|
std_params = dict(database_std_params)
|
|
193
194
|
std_params.update(bucketfs_std_params)
|
|
194
|
-
return _cli_params_to_args(
|
|
195
|
+
return _cli_params_to_args(std_params)
|
{pytest_exasol_extension-0.2.0 → pytest_exasol_extension-0.2.2}/exasol/pytest_extension/version.py
RENAMED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
# ATTENTION:
|
|
2
2
|
# This file is generated by exasol/toolbox/pre_commit_hooks/package_version.py when using:
|
|
3
|
-
# * either "poetry run nox -s fix"
|
|
3
|
+
# * either "poetry run nox -s project:fix"
|
|
4
4
|
# * or "poetry run version-check <path/version.py> --fix"
|
|
5
5
|
# Do not edit this file manually!
|
|
6
6
|
# If you need to change the version, do so in the project.toml, e.g. by using `poetry version X.Y.Z`.
|
|
7
7
|
MAJOR = 0
|
|
8
|
-
MINOR =
|
|
9
|
-
PATCH =
|
|
8
|
+
MINOR = 2
|
|
9
|
+
PATCH = 2
|
|
10
10
|
VERSION = f"{MAJOR}.{MINOR}.{PATCH}"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[tool.poetry]
|
|
2
2
|
name = "pytest-exasol-extension"
|
|
3
|
-
version = "0.2.
|
|
3
|
+
version = "0.2.2"
|
|
4
4
|
description = ""
|
|
5
5
|
authors = ["Mikhail Beck <mikhail.beck@exasol.com>"]
|
|
6
6
|
readme = "README.md"
|
|
@@ -17,8 +17,8 @@ exasol-python-extension-common = ">=0.7.0,<1"
|
|
|
17
17
|
ext = "exasol.pytest_extension"
|
|
18
18
|
|
|
19
19
|
[tool.poetry.group.dev.dependencies]
|
|
20
|
-
exasol-toolbox = ">=0.
|
|
21
|
-
exasol-bucketfs = ">=0.
|
|
20
|
+
exasol-toolbox = ">=0.16.0,<1"
|
|
21
|
+
exasol-bucketfs = ">=1.0.0"
|
|
22
22
|
click = "^8.1.7"
|
|
23
23
|
|
|
24
24
|
[build-system]
|
|
File without changes
|