1029487211
Test & Code

Advertise on podcast: Test & Code

Rating
★★★★★
4.7
from
70 reviews
This podcast has
237 episodes
Language
English
Publisher
Brian Okken
Explicit
No
Date created
2015/08/11
Latest episode
2025/08/15
Average duration
18 min.
Release period
16 days

Description

The Python Test Podcast hosted by Brian Okken

Unlock Test & Code podcast Email contact info,
Listeners & Audience details

Email contact information

Direct podcast contact details

Listeners

Audience numbers & engagement insights

Audience details

Podcast Insights

Podcast episodes

Check latest episodes from Test & Code podcast


238: So Long, and Thanks for All the Fish
2025/08/15
A farewell to a fun 10 years. Also, I should have tested it better. :)In the audio I got the numbers wrong.  Doh!This is episode 238, not 237. Oh well. I'll still be around, of course, at: pythontest.com - where I write about developing software with testspythonbytes.fm - Python news and headlines, delivered directly to your earbudsThanks for all the fun over the last 10 years.I wish you the best.
237: FastAPI Cloud - Sebastián Ramírez
2025/08/11
In this episode, Brian interviews Sebastián Ramírez, creator of FastAPI, about its rapid rise in developer popularity and the launch of FastAPI Cloud. Sebastian explains how FastAPI Cloud addresses deployment challenges small teams face. He shares his transition from open-source to startup founder, focusing on simplifying deployment against the complexity of tools like Kubernetes. Links: FastAPI CloudFastAPISQLModelTyperOpenAPIPydanticSequoia Open Source Fellowship
236: Git Tips for Testing - Adam Johnson
2025/07/30
In this episode, host Brian Okken and guest Adam Johnson explore essential Git features, highlighted by Adam's updated book, "Boost Your Git DX."  Key topics include  "cherry picking" for selective commits"git stash" for managing in-progress work"git diff", and specifically its `--name-only` flag, which provides a streamlined method for developers to identify which files have changed, which can be used to determine which tests need to be run"git bisect" for efficiently pinpointing bugs. This conversation offers valuable strategies for developers at any skill level to enhance their Git proficiency and optimize their coding workflows. Links: Boost Your Git DX - Adam's book
235: pytest-django - Adam Johnson
2025/07/22
In this episode, special guest Adam Johnson joins the show and examines pytest-django, a popular plugin among Django developers. He highlights its advantages over the built-in unittest framework, including improved test management and debugging. Adam addresses transition challenges, evolving fixture practices, and offers tips for optimizing test performance. This episode is a concise guide for developers looking to enhance their testing strategies with pytest-django. Links: pytest-django - a plugin for pytest that provides a set of useful tools for testing Django applications and projects.
234: pytest-metadata - provides access to test session metadata
2025/05/08
pytest-metadata is described as a plugin for pytest that provides access to test session metadata. That is such a humble description for such a massively useful plugin. If you're already using pytest-html, you have pytest-metadata already installed, as pytest-metadata is one of the dependencies for pytest-html.However, pytest-metadata is very useful even on its own. Links: pytest-metadata - The plugin we're talking about in this episodepytest-base-url - Adds the base URL to the metadata.pytest-html - Displays the metadata at the start of each report. See S2:E6: pytest-html - a plugin that generates HTML reports for test resultspytest-reporter-html1 - Presents metadata as part of the report.pytest-selenium - Adds the driver, capabilities, and remote server to the metadata.If you've got other plugins that work well with pytest-metadata, please let me know.
233: pytest-check - allow multiple failures per test
2025/05/02
pytest-check is a pytest plugin that allows multiple failures per test. Normally, a test function will fail and stop running with the first failed assert. That's totally fine for tons of kinds of software tests. However, there are times where you'd like to check more than one thing, and you'd really like to know the results of each check, even if one of them fails. pytest-check allows multiple failed "checks" per test function, so you can see the whole picture of what's going wrong. Links: pytest-checkTop pytest plugins
232: The role of AI in software testing - Anthony Shaw
2025/04/25
AI is helping people write code.  Tests are one of those things that some people don't like to write.    Can AI play a role in creating automated software tests?  Well, yes. But it's a nuanced yes.   Anthony Shaw comes on the show to discuss the topic and try to get AI to write some test for my very own cards project. We discuss: The promise of AI writing your tests for youDownsides to not writing tests yourselfBad ways to generate testsGood ways to ask AI for help in writing testsTricks to get better results while using copilot and other AI toolsLinks: The cards projectA video version of this discussion: Should AI write tests?
231: pytest-repeat - works fine on Python 3.14
2025/04/10
pytest-repeat  is a pytest plugin that makes it easy to repeat a single test, or multiple tests, a specific number of times.  works fine on Python 3.14is tested on Python 3.9-3.14probably works fine still on 3.7 & 3.8This episode also discusses the attempted April Fools episode. Links: pytest-repeatThe April Fools episode: Python 3.14 won't repeat with pytest-repeat
230: Python 3.14 won't repeat with pytest-repeat
2025/04/01
pytest-repeat is a pytest plugin that makes it easy to repeat a single test, or multiple tests, a specific number of times.   Note: This was an April Fools attempt, so the statement ..."Unfortunately, it doesn't seem to work with Python 3.14, even though there is no rational reason why it shouldn't work." ... is NOT true. Listen to the NEXT episode to get an explanation Links: pytest-repeatNext episode: pytest-repeat - works fine on Python 3.14
229: pytest-html - a plugin that generates HTML reports for test results
2025/03/27
pytest-html has got to be one of my all time favorite plugins. pytest-html is a plugin for pytest that generates a HTML report for test results. This episode digs into some of the super coolness of pytest-html. pytest-htmlrepo readme with screenshotenhancing reportspytest-metadata
228: pytest-md and pytest-md-report: Markdown reports for pytest
2025/03/01
Markdown reports as either text or markdown tables.Two fun plugins discussed. Links: pytest-md-reportpytest-mdTop pytest Plugins
227: Mocking in Python with unittest.mock - Michael Foord
2025/02/07
This episode is a replay of a 2021 interview I did with Michael Foord.We lost Michael in January, and I'd like to revisit this interview as a tribute.  Michael Foord was a pivotal figure in the Python community and the creator of the mock library that's now unittest.mock. But he did so much more as well. His contributions continue to resonate within the developer community. This interview is just a small peek at his influence.  In this episode Introduction to Michael FoordThe Mock Library OriginsMocking and Testing PhilosophyCareer Path and ConsultingUnderstanding MockingThe Power of PatchTesting Strategies and DesignMocking External DependenciesTeaching Testing and Mockingpython.org has put up an "In memoriam" page for Michael Foord, and many people have shared stories and memories. Links: In memoriam: Michael Foord 1974-202530 best practices for software development and testing
226: pytest-mock : Mocking in pytest
2025/01/31
pytest-mock is currently the #3 pytest plugin. pytest-mock is a wrapper around unittest.mock. In this episode: Why the pytest-mock plugin is awesomeWhat is mocking, patching, and monkey patchingWhat, if any, is the difference between mock, fake, spy, stub. Why we might need these in testingSome history of mock in Python and how mock became unittest.mockFrom unittest.mockpatch.objectpatch.object with autospecusing these as context managerspytest-mock:The mocker fixture Cleanup in teardownUsing mocker.patch, mocker.spy, and mocker.stubWhy it's awesome and why you might want to use it over straight unittest.mockLinks: top pytest plugins listpytest-mock documentationunittest.mockPodcast episode discussing unittest.mock with Michael Foordmonkeypatch
225: pytest-cov : The pytest plugin for measuring coverage
2025/01/23
pytest-cov is a pytest plugin that helps produce coverage reports using Coverage.py. In this episode, we'll discuss: what Coverage.py iswhy you should measure code coverage on both your source and test codewhat pytest-cov isextra features pytest-cov gives you over and above coverage.pyand generally why using both is awesomeLinks: coverage.pypytest-covhow to set up context reportsTop pytest PluginsErrata: I mentioned that Coverage has the ability to show context (which line is covered by which test) for the past year or so.However, that feature was released in Oct 2018. coverage 5.0 alpha That's over 6 years. Oops. Sorry Ned.
224: pytest plugins - a full series
2025/01/10
This episode kicks off a series on pytest plugins. In this episode: Introduction to pytest pluginsThe pytest.org pytest plugin listFinding pytest related packages on PyPIThe Top pytest plugins list on pythontest.comExploring popular pluginsLearning from plugin examplesLinks: Top pytest plugins listpytest.org plugin listTop PyPI PackagesAnd links to plugins mentioned in the show can be found at pythontest.com/top-pytest-plugins

Podcast reviews

Read Test & Code podcast reviews


4.7 out of 5
70 reviews
★★★★★
mvelasco07 2023/05/17
Highly recommend!
No matter the subject, you’re guaranteed to gain something from every episode - can’t recommend Test
★★★★★
50842 2021/11/24
test review
test
★★★★★
Hellfire0175 2020/01/22
A must listen for software testing
This podcast has directly impacted how we test our code. I learn something new each episode. Talk Python to me in conjunction with Test and Code and P...
★★★★★
AJ Kerrigan 2019/01/02
Testing, code and more
This show provides what it says on the label: engaging discusisons about testing and code. Host Brian Okken approaches each episode with a perfect ble...
★★★★★
gtoothpickss 2017/10/22
In depth on a topic that deserves it
As a junior Python developer, I recently had a sudden realization that testing skills and TDD could be the missing component of my workflow. Learning ...
★★★★★
Clamytoe 2017/04/12
Great show!
Always engaging and helps keep me motivated to write more test!
★★★★★
Nikola Kantar 2017/03/30
Much Needed Testing Coverage
(See what I did there?) Brian's podcast has been hugely helpful for me as a growing programmer who hasn't written (and probably isn't writing) nearly...
★★★★★
MariusLongsword 2016/12/20
Amazing content
Brian has introduced me to so much in the world of testing.
★★★★★
Benjones 2016/06/27
A narrow subject that everybody should know about.
Like a good test suite, Okken's podcast is the perfect combination of agility, coverage, and sensibility. If you are a good tester, and want to learn...
★★★★★
Lg0p89 2016/05/31
Great
Very understandable on many different levels and functionality.
check all reviews on apple podcasts

Podcast sponsorship advertising

Start advertising on Test & Code relevant audience podcasts


What do you want to promote?