Skip to article frontmatterSkip to article content
Site not loading correctly?

This may be due to an incorrect BASE_URL configuration. See the MyST Documentation for reference.

Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!

Testing

Typing Checker

Lint Python Scripts

ruff

ruff is an extremely fast Python linter, written in Rust. It is preferred to other Python linters such as pylint and flake8.

Formatting

ruff is prerred for formating Python script (and notebooks). Just run ruff format to format code.

Debugging, Unit Testing and CICD

Reference