Closed h1alexbel closed 1 month ago
Once you merge this PR into your default branch, you're all set! Codecov will compare coverage reports and display results in all future pull requests.
Thanks for integrating Codecov - We've got you covered :open_umbrella:
@rultor merge
@rultor merge
@h1alexbel OK, I'll try to merge now. You can check the progress of the merge here
@rultor merge
@h1alexbel Oops, I failed. You can see the full log here (spent 4s)
+ set -e
+ set -o pipefail
++ dirname ./run.sh
+ cd .
+ echo 1172
+ echo '2.0-SNAPSHOT BUILD'
2.0-SNAPSHOT BUILD
+ date
Fri Sep 27 19:44:26 UTC 2024
+ uptime
19:44:26 up 1 min, 0 users, load average: 0.86, 0.28, 0.10
+ cat
.rultor.yml in h1alexbel/home doesn't allow h1alexbel/tagrs to use its assets (there are 5 friends), see http://doc.rultor.com/reference.html#assets
+ exit -1
'cid' file is absent, most probably the Docker container wasn't started correctly
@rultor merge
@rultor merge
@h1alexbel OK, I'll try to merge now. You can check the progress of the merge here
@rultor merge
@h1alexbel Done! FYI, the full log is here (took me 20min)
@rultor release, tag is 0.0.1
closes #1 History:
PR-Codex overview
This PR introduces a mechanism for conditionally running tests in Rust based on tags, similar to JUnit's tagging system. It adds functionality to ignore tests that do not match the specified tag and updates the README with relevant instructions.
Detailed summary
README.md
to explain the motivation behind the tool.src/lib.rs
, added logic to check for thetest
attribute and handle tag-based test ignoring.tests/integration_tests.rs
forfast
andslow
tags.