We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 169d34e commit afc3bd5Copy full SHA for afc3bd5
.circleci/config.yml
@@ -125,7 +125,7 @@ jobs:
125
PATH="$HOME/.cargo/bin:/c/Strawberry/perl/bin:/c/Program Files/CMake/bin:$PATH"
126
FEATURES="leveldb leveldb/leveldb-sys-3 rdkafka rdkafka/cmake_build"
127
rm rust-toolchain
128
- cargo test --no-default-features --features "$FEATURES"
+ cargo test --no-default-features --features "$FEATURES" --test-threads=1
129
130
test-stable:
131
resource_class: xlarge
tests/buffering.rs
@@ -77,7 +77,7 @@ fn test_buffering() {
77
78
std::thread::sleep(std::time::Duration::from_millis(100));
79
80
- block_on(topology.stop()).unwrap();
+ rt.block_on(topology.stop()).unwrap();
81
82
shutdown_on_idle(rt);
83
0 commit comments