-
Notifications
You must be signed in to change notification settings - Fork 0
Security/198 update dependencies #202
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
ArBridgeman
wants to merge
8
commits into
main
Choose a base branch
from
security/198_update_dependencies
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
1ab7817
Update dependencies to resolve vulnerabilities
ArBridgeman 2c73235
Update exasol-toolbox to 1.6.0
ArBridgeman f5ddb57
Remove errors-only from pylint.master as hides all lint output
ArBridgeman df89ec2
Lower threshold for failing lint
ArBridgeman 65e6f0c
Add coverage for slow tests too
ArBridgeman 6704c26
Fix as these slow tests do not use a matrix for the python version
ArBridgeman ed7e585
Switch source option as causing issues as was defined
ArBridgeman 00b429d
Quote python 3.10 as without it gets interpreted as 3.1
ArBridgeman File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -39,7 +39,9 @@ jobs: | |
fetch-depth: 0 | ||
|
||
- name: Setup Python & Poetry Environment | ||
uses: exasol/python-toolbox/.github/actions/[email protected] | ||
uses: exasol/python-toolbox/.github/actions/[email protected] | ||
with: | ||
python-version: '3.10' | ||
|
||
- name: Allow unprivileged user namespaces | ||
run: | | ||
|
@@ -50,7 +52,15 @@ jobs: | |
SAAS_HOST: ${{ secrets.INTEGRATION_TEAM_SAAS_STAGING_HOST }} | ||
SAAS_ACCOUNT_ID: ${{ secrets.INTEGRATION_TEAM_SAAS_STAGING_ACCOUNT_ID }} | ||
SAAS_PAT: ${{ secrets.INTEGRATION_TEAM_SAAS_STAGING_PAT }} | ||
run: poetry run -- pytest -rA --setup-show --backend=saas test/integration/test_cloud_storage.py | ||
run: | | ||
poetry run -- coverage run -a --rcfile=pyproject.toml -m pytest -rA --setup-show --backend=saas test/integration/test_cloud_storage.py | ||
|
||
- name: Upload Artifacts | ||
uses: actions/[email protected] | ||
with: | ||
name: coverage-python3.10-slow-saas | ||
path: .coverage | ||
include-hidden-files: true | ||
|
||
large-runner-tests: | ||
name: Text AI Tests | ||
|
@@ -83,9 +93,9 @@ jobs: | |
sudo rm -rf /opt/ghc | ||
|
||
- name: Setup Python & Poetry Environment | ||
uses: exasol/python-toolbox/.github/actions/python-environment@1.4.0 | ||
uses: exasol/python-toolbox/.github/actions/python-environment@1.6.0 | ||
with: | ||
poetry-version: 2.1.2 | ||
python-version: '3.10' | ||
|
||
- name: Allow unprivileged user namespaces | ||
run: | | ||
|
@@ -95,7 +105,14 @@ jobs: | |
env: | ||
TXAIE_PRE_RELEASE_URL: ${{ vars.ZIP_URL }} | ||
TXAIE_PRE_RELEASE_PASSWORD: ${{ secrets.ZIP_PASSWORD }} | ||
run: poetry run -- pytest -rA --setup-show test/integration/test_text_ai_extension_wrapper.py | ||
run: poetry run -- coverage run -a --rcfile=pyproject.toml -m pytest -rA --setup-show test/integration/test_text_ai_extension_wrapper.py | ||
|
||
- name: Upload Artifacts | ||
uses: actions/[email protected] | ||
with: | ||
name: coverage-python3.10-slow-text-ai | ||
path: .coverage | ||
include-hidden-files: true | ||
|
||
# This job ensures inputs have been executed successfully. | ||
approve-merge: | ||
|
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,7 +19,7 @@ jobs: | |
fetch-depth: 0 | ||
|
||
- name: Setup Python & Poetry Environment | ||
uses: exasol/python-toolbox/.github/actions/python-environment@1.4.0 | ||
uses: exasol/python-toolbox/.github/actions/python-environment@1.6.0 | ||
|
||
- name: Download Artifacts | ||
uses: actions/[email protected] | ||
|
@@ -32,6 +32,11 @@ jobs: | |
- name: Validate Artifacts | ||
run: poetry run -- nox -s artifacts:validate | ||
|
||
- name: Upload to sonar | ||
env: | ||
SONAR_TOKEN: "${{ secrets.SONAR_TOKEN }}" | ||
run: poetry run -- nox -s sonar:check | ||
|
||
- name: Generate Report | ||
run: poetry run -- nox -s project:report -- --format json | tee metrics.json | ||
|
||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,4 +7,6 @@ __pycache__/ | |
/.lint.json | ||
/.lint.txt | ||
/.html-documentation/ | ||
/.security.json | ||
/.sonar | ||
.build_output |
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
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
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.