News

Modern Python codebases deserve to have test suites, and the current tooling for testing makes creating test suites easier than ever. Python has its own built-in testing framework, unittest .
Improve your Python testing even more. In my last two articles, I introduced pytest, a library for testing Python code (see "Testing Your Code with Python's pytest" Part I and Part II). pytest has ...
PyTest is a testing framework that allows individuals to write test code in Python. It enables you to create simple and scalable test cases for databases, APIs, and user interfaces. PyTest is ...
Microsoft has announced Playwright, a tool that lets developers write tests in Python for web applications across Chrome, Chromium-based Edge, Apple Safari and Mozilla Firefox. Playwright, a ...
Writing glue code. Python is often described as a “glue language,” meaning it can let disparate code (typically libraries with C language interfaces) interoperate.