-
-
Notifications
You must be signed in to change notification settings - Fork 525
New issue
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
Feat/1117 auto content type #1234
base: main
Are you sure you want to change the base?
Conversation
06a0615
to
a244618
Compare
I removed the I handled One test fails Ready for review, @epi052 . No rush :-) |
I'm puzzled by how tests behave differently locally and on the CI LocallyWhether I run
Same goes when I run
Env:
CI
no sign of nlp::model::tests::model_generates_expected_tf_idf_scores. This difference of behavior together with the fact that I'm quite new to rust and do not understand in details the architecture of feroxbuster makes tests debugging pretty hard for me. Are those false positives? |
@zar3bski don't sweat those two tests. usually when i see a difference between ci/local tests that pass/fail differently, it's because my local toolchain is behind what runs in CI. If you do a As for the tests themselves, it's not code that's related to your changes. I'll take a look before we merge your branch and get things sorted. Same goes for clippy (which are just new lints in the latest toolchain version). |
ok, i did some thinking about this and looked at how some other cli tools handle this sort of thing (if they do at all). Below is what I'm thinking at this point, please let me know what you think!
|
Landing a Pull Request (PR)
Long form explanations of most of the items below can be found in the CONTRIBUTING guide.
Branching checklist
Static analysis checks
cargo fmt
clippy
checks pass when runningcargo clippy --all-targets --all-features -- -D warnings -A clippy::mutex-atomic
I do not understand the clipy erros yet, just noticing it while submitting this PR
Documentation
docs
, as needed. The docs live in a separate repository. Update the appropriate pages at the links below.Not yet
Additional Tests
Not