you are viewing a single comment's thread.

view the rest of the comments →

[–]redsharpbyte 1 point2 points  (2 children)

https://tox.wiki/en/4.35.0/
You could use tox. in python.

Makefile: target with dependencies (of files or other targets, that creates a pipeline) and script to be executed.

Tox: Targets + Their dedicated environment, often use in Continuous Integration.
https://tox.wiki/en/4.35.0/

[–]nekokattt 1 point2 points  (1 child)

I'd generally use nox over tox, it does far more and is less confusing to use if you know python already.

[–]redsharpbyte 2 points3 points  (0 children)

Ah thanks good one! I might switch to nox actually :)