CI: run long fuzz/stress tests in release mode and remove duplicate run

This commit is contained in:
Jussi Saurio
2025-07-08 13:13:49 +03:00
parent 68060dabe2
commit 1aa379de60

View File

@@ -23,13 +23,9 @@ jobs:
with:
python-version: "3.10"
- name: Build
run: cargo build --verbose
run: cargo build --release --verbose
- name: Run ignored long tests
run: cargo test -- --ignored fuzz_long
env:
RUST_BACKTRACE: 1
- name: Run ignored long tests with index
run: cargo test -- --ignored fuzz_long
run: cargo test --release -- --ignored fuzz_long
env:
RUST_BACKTRACE: 1
@@ -46,8 +42,8 @@ jobs:
with:
python-version: "3.10"
- name: Build
run: cargo build --verbose
run: cargo build --release --verbose
- name: Run ignored long tests
run: cargo run -p turso_stress -- -t 1 -i 10000 -s
run: cargo run --release -p turso_stress -- -t 1 -i 10000 -s
env:
RUST_BACKTRACE: 1