-
Notifications
You must be signed in to change notification settings - Fork 516
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into dependabot/docker/demo/elk-stack/extensions/…
…curator/untergeek/curator-8.0.15
- Loading branch information
Showing
22 changed files
with
932 additions
and
718 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains 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 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 |
---|---|---|
@@ -0,0 +1,55 @@ | ||
name: Run Unit Tests | ||
description: "Run unit tests for the project" | ||
|
||
inputs: | ||
python-version: | ||
description: "Python version" | ||
required: true | ||
os: | ||
description: "Operating system" | ||
required: true | ||
is_pr: | ||
description: "Is this a PR?" | ||
required: false | ||
default: "true" | ||
|
||
runs: | ||
using: "composite" | ||
steps: | ||
- name: Set up Python ${{ inputs.python-version }} | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: ${{ inputs.python-version }} | ||
cache: 'pip' | ||
cache-dependency-path: 'requirements*.txt' | ||
- name: Install the project dependencies | ||
shell: bash | ||
run: | | ||
pip install poetry | ||
poetry install --all-extras | ||
- name: Tests | ||
shell: bash | ||
run: | | ||
poetry run pytest --cov=aries_cloudagent --cov-report term-missing --cov-report xml --ignore-glob=/tests/* --ignore-glob=demo/* --ignore-glob=docker/* --ignore-glob=docs/* --ignore-glob=scripts/* 2>&1 | tee pytest.log | ||
PYTEST_EXIT_CODE=${PIPESTATUS[0]} | ||
if grep -Eq "RuntimeWarning: coroutine .* was never awaited" pytest.log; then | ||
echo "Failure: Detected unawaited coroutine warning in pytest output." | ||
exit 1 | ||
fi | ||
exit $PYTEST_EXIT_CODE | ||
- name: Save PR number to file | ||
if: inputs.is_pr == 'true' | ||
shell: bash | ||
run: echo ${{ github.event.number }} > PR_NUMBER | ||
- name: Archive PR number | ||
if: inputs.is_pr == 'true' | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: PR_NUMBER | ||
path: PR_NUMBER | ||
- name: Archive Test Results | ||
if: inputs.is_pr == 'true' | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: TEST_COV | ||
path: test-reports/coverage.xml |
This file contains 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 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 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 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 |
---|---|---|
@@ -0,0 +1,34 @@ | ||
name: Sonar Scan and Coverage | ||
on: | ||
push: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
sonarcloud: | ||
name: SonarCloud | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
- name: Tests | ||
uses: ./.github/actions/run-unit-tests | ||
with: | ||
python-version: "3.9" | ||
os: "ubuntu-latest" | ||
is_pr: "false" | ||
- name: Adjust Test Coverage Source | ||
run: | | ||
# Need to change source in coverage report because it was generated from another context | ||
sed -i 's/\/home\/runner\/work\/aries-cloudagent-python\/aries-cloudagent-python\//\/github\/workspace\//g' test-reports/coverage.xml | ||
- name: SonarCloud Scan | ||
uses: SonarSource/sonarcloud-github-action@master | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} | ||
with: | ||
args: > | ||
-Dsonar.python.coverage.reportPaths=test-reports/coverage.xml | ||
-Dsonar.coverage.exclusions=**/tests/*,**/demo/*,**/docs/*,**/docker/*,**/scripts/* | ||
-Dsonar.sources=./ |
This file contains 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 |
---|---|---|
@@ -0,0 +1,73 @@ | ||
name: Sonar Scan and Coverage | ||
|
||
on: | ||
workflow_run: | ||
workflows: [ PR Tests ] | ||
types: | ||
- completed | ||
|
||
jobs: | ||
SonarCloud: | ||
runs-on: ubuntu-latest | ||
if: github.event.workflow_run.conclusion == 'success' | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
- name: Download PR number artifact | ||
uses: dawidd6/action-download-artifact@v3 | ||
with: | ||
workflow: Tests | ||
run_id: ${{ github.event.workflow_run.id }} | ||
name: PR_NUMBER | ||
- name: Read PR_NUMBER | ||
id: pr_number | ||
uses: juliangruber/read-file-action@v1 | ||
with: | ||
path: ./PR_NUMBER | ||
- name: Download Test Coverage | ||
uses: dawidd6/action-download-artifact@v3 | ||
with: | ||
workflow: Tests | ||
run_id: ${{ github.event.workflow_run.id }} | ||
name: TEST_COV | ||
- name: Request GitHub API for PR data | ||
uses: octokit/[email protected] | ||
id: get_pr_data | ||
with: | ||
route: GET /repos/${{ github.event.repository.full_name }}/pulls/${{ steps.pr_number.outputs.content }} | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
- name: Checkout base branch | ||
run: | | ||
echo forked repo = ${{ fromJson(steps.get_pr_data.outputs.data).head.repo.html_url }}.git | ||
echo base repo = ${{ github.event.repository.clone_url }} | ||
git remote add upstream ${{ fromJson(steps.get_pr_data.outputs.data).head.repo.html_url }}.git | ||
git fetch --all | ||
echo pr number = ${{ fromJson(steps.get_pr_data.outputs.data).number }} | ||
echo forked branch = ${{ fromJson(steps.get_pr_data.outputs.data).head.ref }} | ||
echo base branch = ${{ fromJson(steps.get_pr_data.outputs.data).base.ref }} | ||
git checkout -B temp-branch-for-scanning upstream/${{ fromJson(steps.get_pr_data.outputs.data).head.ref }} | ||
- name: Move Coverage Report And Adjust Source | ||
run: | | ||
mkdir test-reports | ||
mv coverage.xml test-reports | ||
# Need to change source in coverage report because it was generated from another context | ||
sed -i 's/\/home\/runner\/work\/aries-cloudagent-python\/aries-cloudagent-python\//\/github\/workspace\//g' test-reports/coverage.xml | ||
- name: SonarCloud Scan | ||
uses: SonarSource/sonarcloud-github-action@master | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} | ||
with: | ||
args: > | ||
-Dsonar.scm.revision=${{ github.event.workflow_run.head_sha }} | ||
-Dsonar.pullrequest.key=${{ fromJson(steps.get_pr_data.outputs.data).number }} | ||
-Dsonar.pullrequest.branch=${{ fromJson(steps.get_pr_data.outputs.data).head.ref }} | ||
-Dsonar.pullrequest.base=${{ fromJson(steps.get_pr_data.outputs.data).base.ref }} | ||
-Dsonar.coverage.exclusions=**/tests/*,**/demo/*,**/docs/*,**/docker/*,**/scripts/* | ||
-Dsonar.python.coverage.reportPaths=test-reports/coverage.xml | ||
-Dsonar.sources=./ |
This file was deleted.
Oops, something went wrong.
This file contains 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 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.