a couple dorks trying to break into the easiest hobby ever
The conda environment is pinned in environment.yml (versions only, no build hashes — portable across platforms).
Create a fresh env:
mamba env create -n sondesearch -f environment.ymlSync an existing env to match (adds new deps, removes removed ones):
mamba env update -n sondesearch -f environment.yml --pruneAfter changing deps locally, regenerate the lock and commit it:
conda env export --no-builds | sed '/^prefix:/d' > environment.ymlFrom the repo root:
pytestEach subproject (aprs-backhaul/, analyzers/paneltest/, website/backend/) can also be tested independently from its own directory.