Skip to content

Commit

Permalink
Fixed the date (#67)
Browse files Browse the repository at this point in the history
  • Loading branch information
ahsimb authored Oct 10, 2024
1 parent 733ceb3 commit f158045
Show file tree
Hide file tree
Showing 9 changed files with 28 additions and 7 deletions.
3 changes: 3 additions & 0 deletions pytest-backend/error_code_config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
error-tags:
PYTBE:
highest-index: 0
2 changes: 2 additions & 0 deletions pytest-extension/doc/changes/changelog.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Changes

* [unreleased](unreleased.md)
* [0.2.1](changes_0.2.1.md)
* [0.2.0](changes_0.2.0.md)
* [0.1.0](changes_0.1.0.md)

Expand All @@ -10,6 +11,7 @@
hidden:
---
unreleased
changes_0.2.1
changes_0.2.0
changes_0.1.0
Expand Down
9 changes: 9 additions & 0 deletions pytest-extension/doc/changes/changes_0.2.1.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# 0.2.1 - 2024-10-10

## Summary

This release is a bug fixing patch for 0.2.0.

## Bug fixes

* #65 Bug in the cli_args fixture.
3 changes: 2 additions & 1 deletion pytest-extension/exasol/pytest_extension/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -159,6 +159,7 @@ def bucketfs_std_params(backend,

def _cli_params_to_args(cli_params) -> str:
def arg_string(k: str, v: Any):
# This should have been implemented as a method of StdParams.
k = k.replace("_", "-")
if isinstance(v, bool):
return f'--{k}' if v else f'--no-{k}'
Expand Down Expand Up @@ -191,4 +192,4 @@ def cli_args(database_std_params, bucketfs_std_params):
"""
std_params = dict(database_std_params)
std_params.update(bucketfs_std_params)
return _cli_params_to_args(database_std_params)
return _cli_params_to_args(std_params)
4 changes: 2 additions & 2 deletions pytest-extension/exasol/pytest_extension/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@
# Do not edit this file manually!
# If you need to change the version, do so in the project.toml, e.g. by using `poetry version X.Y.Z`.
MAJOR = 0
MINOR = 1
PATCH = 0
MINOR = 2
PATCH = 1
VERSION = f"{MAJOR}.{MINOR}.{PATCH}"
6 changes: 3 additions & 3 deletions pytest-extension/poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pytest-extension/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "pytest-exasol-extension"
version = "0.2.0"
version = "0.2.1"
description = ""
authors = ["Mikhail Beck <[email protected]>"]
readme = "README.md"
Expand Down
3 changes: 3 additions & 0 deletions pytest-itde/error_code_config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
error-tags:
PYTITDE:
highest-index: 0
3 changes: 3 additions & 0 deletions pytest-saas/error_code_config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
error-tags:
PYTSAAS:
highest-index: 0

0 comments on commit f158045

Please sign in to comment.