orca
orca copied to clipboard
Move "integration tests" to test directory?
I believe the integration style tests you have in src/test.rs
should go in tests/test.rs
(or whatever file name you want) because they will then be classified as "integration tests" by cargo test
. If you have them in the source directory for a specific reason, you can just close this issue, but it is good practice to keep these tests in the proper place for integration tests (although it shouldn't really change anything much)
Thanks!