This PR removes the [env] RUST_TEST_THREADS = "1" setting from the config.toml file, which was previously limiting the tests to a single thread. By removing this setting, we allow the system to utilize multiple CPU core.
Additionally, the README has been updated to reflect that test commands should now explicitly limit thread usage where necessary. This is especially important when multiple tests are running concurrently to prevent conflicts when reading from or writing to the same file.
This PR removes the
[env] RUST_TEST_THREADS = "1"
setting from theconfig.toml
file, which was previously limiting the tests to a single thread. By removing this setting, we allow the system to utilize multiple CPU core.Additionally, the README has been updated to reflect that test commands should now explicitly limit thread usage where necessary. This is especially important when multiple tests are running concurrently to prevent conflicts when reading from or writing to the same file.