tokio-rs / prost

PROST! a Protocol Buffers implementation for the Rust Language
Apache License 2.0
3.69k stars 481 forks source link

tests: Create a separate tempdir for each test #1044

Closed caspermeijn closed 3 months ago

caspermeijn commented 3 months ago

Many tests from prost-build wrote to the same temporary directory. Therefore these tests overwrite each other files. Because cargo test runs multi threaded some tests failed sometimes.

gibbz00 commented 3 months ago

Awesome 😊