Skip to content

Commit

Permalink
Merge branch 'main' into dependabot/github_actions/actions/jekyll-bui…
Browse files Browse the repository at this point in the history
…ld-pages-1.0.13
  • Loading branch information
MaryArmaly authored Jan 15, 2025
2 parents b4241ab + 5e366b0 commit 1973fd4
Show file tree
Hide file tree
Showing 431 changed files with 21,611 additions and 8,455 deletions.
1 change: 1 addition & 0 deletions .github/exclude-patterns.txt
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ tests/terraform/checks/resource/azure/example_AzureInstanceExtensions/main.tf
tests/unit/test_secrets.py
tests/terraform/runner/resources/plan/tfplan.json
tests/terraform/parser/resources/plan_tags/tfplan.json
tests/terraform/image_referencer/resources/aws/batch_tfplan.json
tests/helm/runner/resources/schema-registry
tests/common/utils/conftest.py
tests/terraform/runner/resources/get_graph_resource_entity_config/main.tf
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ jobs:
fail-fast: true
matrix:
python: ["3.8", "3.9"]
os: [ubuntu-latest, macos-12, windows-latest]
os: [ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v3
Expand Down Expand Up @@ -221,7 +221,7 @@ jobs:
fail-fast: true
matrix:
python: ["3.8", "3.9"]
os: [ubuntu-latest, macos-12]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
continue-on-error: true # for now it is ok to fail
steps:
Expand Down
28 changes: 9 additions & 19 deletions .github/workflows/pr-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,12 @@ jobs:
github-token: ${{ secrets.GITHUB_TOKEN }}
- name: Install pipenv
run: |
python -m pip install --no-cache-dir --upgrade pipenv
if [ '${{ matrix.python }}' == '3.12' ]; then
# needed for numpy
python -m pip install --no-cache-dir --upgrade pipenv==2024.0.3
else
python -m pip install --no-cache-dir --upgrade pipenv
fi
- name: Install dependencies
run: |
# remove venv, if exists
Expand All @@ -105,21 +110,6 @@ jobs:
# list all dependencies to get a better view about installed package versions
pipenv run pip list
- name: Get venv path
id: get-venv
run: |
echo "venv=$(pipenv --venv)" >> "$GITHUB_OUTPUT"
- name: Run Redefine.dev
uses: redefinedev/redefine-action@main
with:
auth: ${{ secrets.REDEFINE_AUTH }}
python-venv-path: ${{ steps.get-venv.outputs.venv }}
testing-framework: pytest
mode: fail-fast
time-limit: 30 # approx 15% of the run time
config-args: matrix_value=${{ matrix.python }} file_based_prediction=true

- name: Unit tests
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down Expand Up @@ -185,7 +175,7 @@ jobs:
fail-fast: true
matrix:
python: ["3.8", "3.9"]
os: [ubuntu-latest, macos-12, windows-latest]
os: [ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v3
Expand Down Expand Up @@ -288,7 +278,7 @@ jobs:
fail-fast: true
matrix:
python: ["3.8"]
os: [ubuntu-latest, macos-12]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v3
Expand Down Expand Up @@ -378,7 +368,7 @@ jobs:
fail-fast: true
matrix:
python: ["3.8"]
os: [ubuntu-latest, macos-12]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v3
Expand Down
Loading

0 comments on commit 1973fd4

Please sign in to comment.