We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
tests/lib.rs
Generally, Rust runs tests in parallel.
In https://github.com/aesir-vanir/vidar/blob/master/tests/lib.rs, the tests all operate on the same directory structure, and thus a file may be overridden by other tests, for instance
no_file()
invalid_kind()
setup(Some(most))
int.env
setup(None)
Environment::try_from("int")
Ok
assert!(false)
Each test should run inside their own temporary directory, instead of reusing the same env::temp_dir().
env::temp_dir()
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Generally, Rust runs tests in parallel.
In https://github.com/aesir-vanir/vidar/blob/master/tests/lib.rs, the tests all operate on the same directory structure, and thus a file may be overridden by other tests, for instance
no_file()
invalid_kind()
setup(Some(most))
int.env
setup(None)
int.env
as wellEnvironment::try_from("int")
Ok
assert!(false)
Each test should run inside their own temporary directory, instead of reusing the same
env::temp_dir()
.The text was updated successfully, but these errors were encountered: