Other articles


  1. A couple of questions about mypy - 2018 July 20

    mypy is a useful tool for code quality in Python, I had a fellow developer ask me a few questions about it over email and my answers to some of the questions are in this post.


    read more
  2. Limiting the runtime of Python unit tests - 2018 June 23

    If you need to limit the run time of python unit tests you can use the pytest-timeout decorator to do it.


    read more
  3. Pytest fixtures with Flask - 2018 May 27

    Recently I've been working on a web API with Flask, here's how I went about making unit tests with pytest work well with Flask and testing the API via requests.


    read more