diff --git a/.gitea/workflows/test.yml b/.gitea/workflows/test.yml index 1089cf9..2c78b3a 100644 --- a/.gitea/workflows/test.yml +++ b/.gitea/workflows/test.yml @@ -21,32 +21,3 @@ jobs: --exclude postgres-federation \ --exclude postgres-search - # Integration tests — require a real PostgreSQL instance. - # These test that the SQL queries in the adapter crates are correct. - integration: - runs-on: ubuntu-latest - services: - postgres: - image: postgres:16 - env: - POSTGRES_PASSWORD: postgres - POSTGRES_DB: thoughts_test - options: >- - --health-cmd pg_isready - --health-interval 10s - --health-timeout 5s - --health-retries 5 - ports: - - 5432:5432 - env: - DATABASE_URL: postgres://postgres:postgres@localhost:5432/thoughts_test - steps: - - uses: actions/checkout@v4 - - uses: dtolnay/rust-toolchain@stable - - uses: Swatinem/rust-cache@v2 - - name: integration tests - run: | - cargo test \ - -p postgres \ - -p postgres-federation \ - -p postgres-search