### Run Quickstart Tests (UBOS) Source: https://github.com/fediverse-devnet/feditest/blob/develop/RELEASE-HOWTO.md Instructions to run quickstart examples using a specific feditest executable path on UBOS, followed by opening the HTML reports. ```bash xdg-open results/*.html ``` -------------------------------- ### Release feditest to PyPI Source: https://github.com/fediverse-devnet/feditest/blob/develop/RELEASE-HOWTO.md Commands to perform a release of the feditest project to PyPI, including uploading distribution files and installing the upgraded package. ```bash make release venv.release/bin/twine upload dist/* pip3.11 install --upgrade feditest feditest version ``` -------------------------------- ### Clean Rebuild and Linting (macOS) Source: https://github.com/fediverse-devnet/feditest/blob/develop/RELEASE-HOWTO.md Commands to clean the virtual environment, rebuild it, and run linting checks for the feditest project on macOS. ```bash rm -rf venv.* make venv make lint ``` -------------------------------- ### Tag Version (feditest-tests-fediverse) Source: https://github.com/fediverse-devnet/feditest/blob/develop/RELEASE-HOWTO.md Commands to tag a new version and push the tag to the remote repository for feditest-tests-fediverse. ```bash git tag -a vVERSION -m vVERSION git push git push --tags ``` -------------------------------- ### Run Sandbox Tests (macOS) Source: https://github.com/fediverse-devnet/feditest/blob/develop/RELEASE-HOWTO.md Commands to clean, create, and run sandbox tests using a specific feditest executable path on macOS. ```bash make -f Makefile.create clean FEDITEST=../feditest/venv.darwin.default/bin/feditest make -f Makefile.run clean FEDITEST=../feditest/venv.darwin.default/bin/feditest make -f Makefile.create examples FEDITEST=../feditest/venv.darwin.default/bin/feditest make -f Makefile.run sandbox FEDITEST=../feditest/venv.darwin.default/bin/feditest ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.