ci: tag fixes and robustness to workflow failures (#3838)
This commit is contained in:
parent
f17de26ab0
commit
a7d1449e9d
10 changed files with 125 additions and 35 deletions
4
.github/workflows/python_test.yml
vendored
4
.github/workflows/python_test.yml
vendored
|
|
@ -55,6 +55,7 @@ jobs:
|
|||
- name: Install Python dependencies
|
||||
run: |
|
||||
poetry env use ${{ matrix.python-version }}
|
||||
poetry lock --no-update
|
||||
poetry install
|
||||
- name: Run unit tests
|
||||
uses: nick-fields/retry@v3
|
||||
|
|
@ -71,7 +72,7 @@ jobs:
|
|||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
with:
|
||||
ref: ${{ inputs.branch || github.ref }}
|
||||
ref: ${{ inputs.ref || github.ref }}
|
||||
- name: Set up Python ${{ matrix.python-version }} + Poetry ${{ env.POETRY_VERSION }}
|
||||
uses: "./.github/actions/poetry_caching"
|
||||
with:
|
||||
|
|
@ -81,6 +82,7 @@ jobs:
|
|||
- name: Install Python dependencies
|
||||
run: |
|
||||
poetry env use ${{ matrix.python-version }}
|
||||
poetry lock --no-update
|
||||
poetry install
|
||||
- name: Run integration tests
|
||||
run: make integration_tests_no_api_keys
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue