Skip to content

Commit

Permalink
feat: Support CI for sqllogictest
Browse files Browse the repository at this point in the history
  • Loading branch information
Weijun-H committed Oct 13, 2024
1 parent 5c8335c commit 20a31ad
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/test-pg_analytics.yml
Original file line number Diff line number Diff line change
Expand Up @@ -146,3 +146,12 @@ jobs:
echo "Running Rust tests..."
export DATABASE_URL=postgresql://localhost:288${{ matrix.pg_version }}/postgres
cargo pgrx test "pg${{ matrix.pg_version }}"
- name: Run sqllogictest
if: steps.check_skip.outputs.skip_remaining_steps != 'true'
run: |
# Variables (we disable telemetry to avoid skewing the user metrics with CI runs)
PARADEDB_TELEMETRY=false
echo ""
echo "Running sqllogictest..."
cd tests/sqllogictest
cargo test --test sqllogictest --features pg${{ matrix.pg_version }}

0 comments on commit 20a31ad

Please sign in to comment.