diff --git a/.config/nextest.toml b/.config/nextest.toml new file mode 100644 index 00000000..420167e9 --- /dev/null +++ b/.config/nextest.toml @@ -0,0 +1,4 @@ +[profile.default] +test-threads = "1" +slow-timeout = { period = "30s", terminate-after = 4 } +fail-fast = false \ No newline at end of file diff --git a/.github/workflows/testing.yml b/.github/workflows/testing.yml index 50fd50e7..fb191451 100644 --- a/.github/workflows/testing.yml +++ b/.github/workflows/testing.yml @@ -27,6 +27,4 @@ jobs: - name: Build (metadata) run: cargo build --verbose --no-default-features --features metadata - name: Run Tests - run: cargo nextest run --all-features --test-threads 1 - env: - RUST_TEST_THREADS: 1 + run: cargo nextest run --all-features