#1937 - Add tests for Bingo Oracle#3634
Draft
Mantas-Kovarskas wants to merge 12 commits into
Draft
Conversation
- Create Oracle database adapter (bingo/tests/dbc/OracleDB.py) following the same pattern as PostgresSQL.py, with Oracle-specific SQL syntax - Add Oracle configuration to db_config.ini - Update base.py to support Oracle connection strings and env var overrides - Update conftest.py to handle Oracle DB setup/teardown - Add oracledb dependency to requirements.txt - Add test_bingo_oracle_linux_x86_64 CI job using gvenzl/oracle-xe service Co-authored-by: AlexeyGirin <26869421+AlexeyGirin@users.noreply.github.com>
Co-authored-by: AlexeyGirin <26869421+AlexeyGirin@users.noreply.github.com>
On Ubuntu 24.04 (current ubuntu-latest), the libaio1 package has been renamed to libaio1t64. Use fallback to support both Ubuntu versions. Co-authored-by: AlexeyGirin <26869421+AlexeyGirin@users.noreply.github.com>
The `PATH: /opt/oracle/instantclient_23_5:${{ env.PATH }}` in the env
block resolved to just `/opt/oracle/instantclient_23_5:` because
`${{ env.PATH }}` doesn't access the system PATH. This caused mkdir,
tar, and other basic commands to not be found. Fixed by using
`export PATH=...` inside the run block where shell $PATH works.
Co-authored-by: AlexeyGirin <26869421+AlexeyGirin@users.noreply.github.com>
On Ubuntu 24.04, libaio1t64 installs libaio.so.1t64 but sqlplus expects libaio.so.1. Add a conditional symlink when libaio.so.1 doesn't exist but libaio.so.1t64 does. Co-authored-by: AlexeyGirin <26869421+AlexeyGirin@users.noreply.github.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
No description provided.