DataDog / riot

A Python virtual env builder and command runner
https://ddriot.readthedocs.io/
Apache License 2.0
23 stars 15 forks source link

feat: add riot list --hash-only option to list only venv short hashes #195

Closed brettlangdon closed 1 year ago

brettlangdon commented 1 year ago

riot supports doing riot run <short-hash>, by offering a way to do riot list and only print the short hashes, we can then support better paralellization in CI.

e.g. riot list --hash-only | circleci tests split | xargs -n 1 riot -v run

This would allow us to scale the number of parallel nodes however we want.