From 24b524551a87c134758de0e97a0274326cab441a Mon Sep 17 00:00:00 2001 From: Shreyas Pimpalgaonkar Date: Tue, 22 Oct 2024 17:03:33 -0700 Subject: [PATCH] rm dedup tests --- ...tegration-tests-graphrag-deduplication.yml | 59 ------------------- ...tegration-tests-graphrag-deduplication.yml | 56 ------------------ 2 files changed, 115 deletions(-) delete mode 100644 .github/workflows/r2r-light-py-integration-tests-graphrag-deduplication.yml delete mode 100644 .github/workflows/run-r2r-full-py-integration-tests-graphrag-deduplication.yml diff --git a/.github/workflows/r2r-light-py-integration-tests-graphrag-deduplication.yml b/.github/workflows/r2r-light-py-integration-tests-graphrag-deduplication.yml deleted file mode 100644 index 3792ed891..000000000 --- a/.github/workflows/r2r-light-py-integration-tests-graphrag-deduplication.yml +++ /dev/null @@ -1,59 +0,0 @@ -# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json - -name: R2R Light Python Integration Test (ubuntu) - -on: - push: - branches: - - dev - - dev-minor - pull_request: - branches: - - dev - - dev-minor - workflow_dispatch: - -jobs: - test: - runs-on: ${{ matrix.os }} - - strategy: - matrix: - os: [ubuntu-latest] - test_category: - - cli-graphrag - - sdk-graphrag - env: - OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }} - TELEMETRY_ENABLED: 'false' - R2R_POSTGRES_HOST: localhost - R2R_POSTGRES_DBNAME: postgres - R2R_POSTGRES_PORT: '5432' - R2R_POSTGRES_PASSWORD: postgres - R2R_POSTGRES_USER: postgres - 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-light - with: - os: ${{ matrix.os }} - - - name: Setup and start PostgreSQL - uses: ./.github/actions/setup-postgres-ext - with: - os: ${{ matrix.os }} - - - name: Start R2R Light server - uses: ./.github/actions/start-r2r-light - - - name: Run CLI GraphRAG Deduplication Tests - if: matrix.test_category == 'cli-graphrag' - uses: ./.github/actions/run-cli-graphrag-deduplication-tests - - - name: Run SDK GraphRAG Deduplication Tests - if: matrix.test_category == 'sdk-graphrag' - uses: ./.github/actions/run-sdk-graphrag-deduplication-tests diff --git a/.github/workflows/run-r2r-full-py-integration-tests-graphrag-deduplication.yml b/.github/workflows/run-r2r-full-py-integration-tests-graphrag-deduplication.yml deleted file mode 100644 index f60fa3c8b..000000000 --- a/.github/workflows/run-r2r-full-py-integration-tests-graphrag-deduplication.yml +++ /dev/null @@ -1,56 +0,0 @@ -name: R2R Full Python Integration Test (ubuntu) - -on: - push: - branches: - - dev - - dev-minor - pull_request: - branches: - - dev - - dev-minor - workflow_dispatch: - -jobs: - test: - runs-on: ${{ matrix.os }} - - strategy: - matrix: - os: [ubuntu-latest] - test_category: - - cli-graphrag - - sdk-graphrag - 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 GraphRAG Tests - if: matrix.test_category == 'cli-graphrag' - uses: ./.github/actions/run-cli-graphrag-deduplication-tests - - - name: Run SDK GraphRAG Tests - if: matrix.test_category == 'sdk-graphrag' - uses: ./.github/actions/run-sdk-graphrag-deduplication-tests