fosstodon.org is one of the many independent Mastodon servers you can use to participate in the fediverse.
Fosstodon is an invite only Mastodon instance that is open to those who are interested in technology; particularly free & open source software. If you wish to join, contact us for an invite.

Administered by:

Server stats:

10K
active users

I’ve been often asked why I’m using Nox for running my #Python #test suites lately. I’ve been evading the question because I can’t explain it without contrasting it with Tox, a project very dear to my heart.

I’ve finally given in: Why I Like Nox: hynek.me/articles/why-i-like-n

Hynek SchlawackWhy I Like NoxBy Hynek Schlawack

I've updated the article based on @ubernostrum observation in lobste.rs/s/983b6p/why_i_like_
The fact that Python versions are a first-class selector in Nox can simplify your CI config. I've also added some Bash to handle the edge case of pre-release version specifiers. 🤓

Check it out: hynek.me/articles/why-i-like-n

lobste.rsWhy I Like Nox | Lobsters
Adam Johnson :django: :python:

@hynek @ubernostrum FYI tox 4 added the -f flag to select envs by factors, e.g. you can run all Python 3.11 envs with:

tox -f py311

In my GitHub Actions setups I run one per Python env with:

tox run -f py$(echo ${{ matrix.python-version }} | tr -d .)

@adamchainz @ubernostrum right I remember playing with it, but there was something weird and I didn’t write it down 🤔

@adamchainz @hynek I've not really messed around with tox 4 -- my attempts to get it working on GH Actions led to re-re-exploring, and ultimately adopting, nox.