diff --git a/.github/workflows/r2r-full-py-integration-tests-graphrag.yml b/.github/workflows/r2r-full-py-integration-tests-graphrag.yml deleted file mode 100644 index 240eb69d1..000000000 --- a/.github/workflows/r2r-full-py-integration-tests-graphrag.yml +++ /dev/null @@ -1,60 +0,0 @@ -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-graphrag - - sdk-graphrag - env: - OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }} - AZURE_API_KEY: ${{ secrets.AZURE_API_KEY }} - AZURE_API_BASE: ${{ secrets.AZURE_API_BASE }} - AZURE_API_VERSION: ${{ secrets.AZURE_API_VERSION }} - 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 GraphRAG Tests - if: matrix.test_category == 'cli-graphrag' - uses: ./.github/actions/run-cli-graphrag-tests - - - name: Run SDK GraphRAG Tests - if: matrix.test_category == 'sdk-graphrag' - uses: ./.github/actions/run-sdk-graphrag-tests