Skip to content

Commit

Permalink
#70 Enabled SaaS tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ahsimb committed Oct 3, 2024
1 parent ecea298 commit ce4ec96
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,4 +40,4 @@ jobs:
SAAS_ACCOUNT_ID: ${{ secrets.INTEGRATION_TEAM_SAAS_STAGING_ACCOUNT_ID }}
SAAS_PAT: ${{ secrets.INTEGRATION_TEAM_SAAS_STAGING_PAT }}
run:
poetry run nox -s integration-tests -- -- --db-version ${{ inputs.exasol-version}} --backend onprem
poetry run nox -s integration-tests -- -- --db-version ${{ inputs.exasol-version}} --backend all
7 changes: 4 additions & 3 deletions doc/changes/unreleased.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,10 @@

## Features

* #66: Implement a standard CLI options builder.
* #69: Add create_bucketfs_location function.
* #66: Implemented a standard CLI options builder.
* #70: Implemented a CLI callback function for the language container deployment.
* #69: Added create_bucketfs_location function.

# Refactoring

* #68: Make open_pyexasol_connection(...) using kwargs derived from the cli options.
* #68: Made open_pyexasol_connection(...) using kwargs derived from the cli options.
18 changes: 9 additions & 9 deletions doc/user_guide/user-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ similar to the one below.
python -m <exasol_extension>.deploy language-container <options>
```

The name of the script (```<exasol_extension>.deploy``` in the above command) can vary from one extension to another.
Please check the user guide of a particular extension. The rest of the command line will have a common format. It
will include the command - ```language-container``` - and selected options. The choice of options is primarily
determined by the storage backend being used - On-Prem or SaaS.
The name of the script (```<exasol_extension>.deploy``` in the above command) and the command name
(e.g. ```language-container```) can vary from one extension to another. Please check the user guide of a particular
extension. The rest of the command line will have a common format. It will include some of the options defined below.
The choice of options is primarily determined by the storage backend being used - On-Prem or SaaS.

### List of options

Expand Down Expand Up @@ -55,13 +55,13 @@ another source.
| version | [x] | [x] | Optional, provide for downloading SLC from GitHub |
| container-file | [x] | [x] | Optional, provide for uploading SLC file |
| ssl-cert-path | [x] | [x] | Optional |
| [no_]use-ssl-cert-validation | [x] | [x] | Optional boolean, defaults to True |
| [no-]use-ssl-cert-validation | [x] | [x] | Optional boolean, defaults to True |
| ssl-client-cert-path | [x] | | Optional |
| ssl-client-private-key | [x] | | Optional |
| [no_]upload-container | [x] | [x] | Optional boolean, defaults to True |
| [no_]alter-system | [x] | [x] | Optional boolean, defaults to True |
| [dis]allow-override | [x] | [x] | Optional boolean, defaults to False |
| [no_]wait_for_completion | [x] | [x] | Optional boolean, defaults to True |
| [no-]upload-container | [x] | [x] | Optional boolean, defaults to True |
| [no-]alter-system | [x] | [x] | Optional boolean, defaults to True |
| [no-]allow-override | [x] | [x] | Optional boolean, defaults to False |
| [no-]wait_for_completion | [x] | [x] | Optional boolean, defaults to True |

### Container selection

Expand Down

0 comments on commit ce4ec96

Please sign in to comment.