Conversation
Codecov Report❌ Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #1049 +/- ##
==========================================
- Coverage 95.85% 94.65% -1.21%
==========================================
Files 395 396 +1
Lines 30160 30544 +384
==========================================
+ Hits 28910 28911 +1
- Misses 1250 1633 +383 ☔ View full report in Codecov by Harness. 🚀 New features to boost your workflow:
|
- Capture runner and cargo test output to a fresh per-run log file named target/run-algorithms-<UTC nanosecond timestamp>.log - Write the run summary (counts, elapsed, log path, log byte size) to a matching .txt file and stdout, keeping it out of the .log - Resolve clippy warnings (map_or_else, i64::from, io::Error::other), allow clippy::exit, and drop the invalid doc_paragraphs_missing_punctuation lint - Update algorithms-001.csv with latest PASS/runsecs results Co-Authored-By: Oz <oz-agent@warp.dev>
|
This pull request has been automatically marked as abandoned because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions. |
|
This pull request has been automatically marked as abandoned because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions. |
|
Please ping one of the maintainers once you commit the changes requested or make improvements on the code. If this is not the case and you need some help, feel free to ask for help in our Gitter channel. Thank you for your contributions! |
This PR addresses #1048
Description
Generated file algorithms-001.csv to list each the 393 modules here
so that new module in src/utils/run-algorithms.rs sequentially executed.
startnum specifies the first sequence number to begin running.
num2run specifies the number of rows to run.
Issues found in algorithm code from clippy, crate test, run, etc.
will be addressed in separate PRs
for issues found in data_structures/floyds_algorithm.rs, etc.
Type of change
Please delete options that are not relevant.
data_structures/floyds_algorithm.rs
Checklist:
cargo clippy --all -- -D warningsjust before my last commit and fixed any issue that was found.cargo fmtjust before my last commit.cargo testjust before my last commit and all tests passed.mod.rsfile within its own folder, and in any parent folder(s).DIRECTORY.mdwith the correct link.COUNTRIBUTING.mdand my code follows its guidelines.Please make sure that if there is a test that takes too long to run ( > 300ms), you
#[ignore]that ortry to optimize your code or make the test easier to run. We have this rule because we have hundreds of
tests to run; If each one of them took 300ms, we would have to wait for a long time.