In this post I will describe my approach to C unit testing using pytest. In particular, we get to see how to gracefully handle SIGSEGVs and prevent them from stopping the test runner abruptly. Furthermore, we shall try to write tests in a Pythonic way.
Articles tagged with python
❱ Increasing Austin accuracy with a dobule-heap trick
The latest version of Austin comes with a heap size option that can be used in increase the accuracy with which invalid samples are detected. In this post I give a brief description of how this works.
❱ How I completed the Hacktoberfest 2021 challenge with a profiler
I shall reveal to you how I managed to complete the Hacktoberfest 2021 challenge with just a profiler. So read on if you are interested!
❱ Spy on Python down to the Linux kernel level
Observability into native call stacks requires some compromise. In this post I explain what this actually means for a Python tool like Austin.
❱ How to bust Python performance issues
In this short post I will try to convince you of how easy it is to find performance issues in your Python code and how you should develop the habit of profiling your code before you ship it.
❱ The Austin TUI Way to Resourceful Text-based User Interfaces
The latest version of the Austin TUI project makes use of a custom XML resource file to describe and build the actual text-based UI, using
curses
as back-end. In this post we shall see how one can use the same technology to quickly build reactive TUIs using Python.❱ Deterministic and Statistical Python Profiling
If you want to be sure that your applications are working optimally, then sooner or later you will end up turning to profiling techniques to identify and correct potential issues with your code. In this post, I discuss some of the current profiling tools and techniques for Python. The official documentation has a whole section on the subject, but we shall go beyond that and have a look at some alternative solutions, especially in the area of sampling profilers.
❱ Extending Python with Assembly
What's a better way to fill an empty evening if not by reading about how to extend Python with Assembly? I bet you don't even know where to start to answer this question :P. But if you're curious to know how you can use another language to extend Python, and if you happen to like Assembly programming, you might end up actually enjoying this post (I hope!).
❱ IoT with WebSockets and Python's AsyncIO
After a gentle introduction to the concept of IoT and what it entails, we take a dive into WebSockets and Asynchronous I/O in Python to explore other ways of controlling devices over a network. This post uses a simple two LED circuit to introduce WebSockets, and how to use them in Python together with the
asyncio
module.