Print logs on failing tests #498
Workflow file for this run
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
name: R2R Full Python Integration Test (ubuntu) | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- dev | |
- dev-minor | |
- main | |
workflow_dispatch: | |
jobs: | |
test: | |
runs-on: ${{ matrix.os }} | |
continue-on-error: true | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
test_category: | |
- cli-ingestion | |
- cli-retrieval | |
- sdk-ingestion | |
- sdk-retrieval | |
- sdk-auth | |
- sdk-collections | |
- sdk-prompts | |
env: | |
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }} | |
TELEMETRY_ENABLED: 'false' | |
R2R_PROJECT_NAME: r2r_default | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Set up Python and install dependencies | |
uses: ./.github/actions/setup-python-full | |
with: | |
os: ${{ matrix.os }} | |
- name: Setup and start Docker | |
uses: ./.github/actions/setup-docker | |
- name: Login Docker | |
uses: ./.github/actions/login-docker | |
with: | |
docker_username: ${{ secrets.RAGTORICHES_DOCKER_UNAME }} | |
docker_password: ${{ secrets.RAGTORICHES_DOCKER_TOKEN }} | |
- name: Start R2R Full server | |
uses: ./.github/actions/start-r2r-full | |
- name: Run CLI Ingestion Tests | |
if: matrix.test_category == 'cli-ingestion' | |
uses: ./.github/actions/run-cli-ingestion-tests | |
continue-on-error: true | |
- name: Run CLI Retrieval Tests | |
if: matrix.test_category == 'cli-retrieval' | |
uses: ./.github/actions/run-cli-retrieval-tests | |
continue-on-error: true | |
- name: Run SDK Ingestion Tests | |
if: matrix.test_category == 'sdk-ingestion' | |
uses: ./.github/actions/run-sdk-ingestion-tests | |
continue-on-error: true | |
- name: Run SDK Retrieval Tests | |
if: matrix.test_category == 'sdk-retrieval' | |
uses: ./.github/actions/run-sdk-retrieval-tests | |
continue-on-error: true | |
- name: Run SDK Auth Tests | |
if: matrix.test_category == 'sdk-auth' | |
uses: ./.github/actions/run-sdk-auth-tests | |
continue-on-error: true | |
- name: Run SDK Collections Tests | |
if: matrix.test_category == 'sdk-collections' | |
uses: ./.github/actions/run-sdk-collections-tests | |
continue-on-error: true | |
- name: Run SDK Prompt Tests | |
if: matrix.test_category == 'sdk-prompts' | |
uses: ./.github/actions/run-sdk-prompt-management-tests | |
continue-on-error: true | |
- name: Print Docker logs on failure | |
if: > | |
(matrix.test_category == 'cli-ingestion' && failure()) || | |
(matrix.test_category == 'sdk-ingestion' && failure()) || | |
(matrix.test_category == 'cli-retrieval' && failure()) || | |
(matrix.test_category == 'sdk-retrieval' && failure()) || | |
(matrix.test_category == 'sdk-auth' && failure()) || | |
(matrix.test_category == 'sdk-collections' && failure()) || | |
(matrix.test_category == 'sdk-prompts' && failure()) | |
run: | | |
echo "::group::Docker Logs" | |
docker ps -a | |
docker logs r2r-full | |
echo "::endgroup::" |