Skip to content

Commit

Permalink
#63: Ignored TLS certificates for tests
Browse files Browse the repository at this point in the history
  • Loading branch information
tomuben committed Jun 10, 2024
1 parent 160a765 commit 9ce2325
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 1 deletion.
31 changes: 31 additions & 0 deletions doc/changes/changes_0.5.1.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# Exasol Python Test Framework 0.5.1, released 2024-06-11

Code name: Support for newer Exasol ODBC driver

## Summary

This release fixes a bug when using the newer Exasol ODBC drivers.

## Features

n/a

## Bugs

- #63: Ignored TLS certificates for tests

## Documentation

n/a

## Refactoring

n/a

## Security

n/a

## Dependency updates

### Compile Dependency Updates
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ def _write_odbcini(self, log_path, server, driver, user, password, odbc_log):
tmp.write('EXAPWD = %s\n' % password)
tmp.write('CONNECTIONLCCTYPE = en_US.UTF-8\n') # TODO Maybe make this optional
tmp.write('CONNECTIONLCNUMERIC = en_US.UTF-8\n')
tmp.write('SSLCertificate = SSL_VERIFY_NONE\n')
if odbc_log != 'off':
tmp.write('EXALOGFILE = %s/exaodbc.log\n' % log_path.logdir)
tmp.write('LOGMODE = %s\n' % {
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "exasol-python-test-framework"
version = "0.5.0"
version = "0.5.1"
description = "Python Test framework for Exasol database tests"

license = "MIT"
Expand Down

0 comments on commit 9ce2325

Please sign in to comment.