SubconsciousCompute / meta-package-manager

A meta package manager for interfacing with multiple distro/platform specific package managers.
GNU Affero General Public License v3.0
3 stars 2 forks source link

feat: add the "outdated" command #61

Closed ss141309 closed 2 weeks ago

ss141309 commented 3 weeks ago

I was unable to check the output of this command for the brew and choco managers, therefore if anything is wrong with them, please mention it here so that I can fix it

dilawar commented 3 weeks ago

Is it possible to fix the failing linux tests? I know its not failing due to this MR.

ss141309 commented 3 weeks ago

it seems that the tests fail due to a race condition on linux. We can fix that either by running cargo test with a single thread on our github workflow (by using cargo test -- --test-threads=1) or by using the serial_test crate, which essentially does the same thing. Which one do you prefer?

dilawar commented 3 weeks ago

test-threads=1 would be better