Skip to content

Commit

Permalink
slightly increase stack size in some tests (#4967)
Browse files Browse the repository at this point in the history
  • Loading branch information
trinity-1686a authored May 9, 2024
1 parent 76e1c9b commit e8978df
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,8 @@ jobs:
run: |
cargo llvm-cov clean --workspace
cargo llvm-cov nextest --no-report --test failpoints --features fail/failpoints --retries 2
CARGO_BUILD_JOBS=4 cargo llvm-cov nextest --no-report --all-features --retries 2
# increase stack size for test_all_with_s3_localstack_cli, see quickwit#4963
RUST_MIN_STACK=67108864 CARGO_BUILD_JOBS=4 cargo llvm-cov nextest --no-report --all-features --retries 2
cargo llvm-cov report --lcov --output-path lcov.info
working-directory: ./quickwit

Expand Down
1 change: 1 addition & 0 deletions quickwit/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ test-all:
QW_S3_ENDPOINT=http://localhost:4566 \
QW_S3_FORCE_PATH_STYLE_ACCESS=1 \
QW_TEST_DATABASE_URL=postgres://quickwit-dev:quickwit-dev@localhost:5432/quickwit-metastore-dev \
RUST_MIN_STACK=67108864 \
cargo test --all-features
cargo test --test failpoints --features fail/failpoints

Expand Down

0 comments on commit e8978df

Please sign in to comment.