Articles in this series
You've accidentally added and committed a large binary file or several large files to a Git repository? And to make things even worse, you've already...
You have a Python package within a GitHub monorepo and would like to report test coverage to SonarCloud? Unfortunately, neither SonarCloud's Python...
In a typical multi-tier test setup, we run different test suites across several GitHub Actions jobs, each of which produces a coverage report. For...
By convention, Python packages expose their version through a __version__ variable: >>> import package >>> package.__version__ 0.4.2 Ideally, the...