

Test & Code
Brian Okken
The Python Test Podcast hosted by Brian Okken
Episodes
Mentioned books

Nov 5, 2020 • 40min
137: Become an Author - Matt Harrison interviews Brian Okken
Matt Harrison, author of many Python books, is putting together a course, Effective Book Authoring, to help other people write and publish books. As part of this course, he's including interviews with people who have already written books, including me. This is that interview.We discuss:Why I wrote "Python Testing with pytest"Self publishing vs working with a publisherThe writing, editing, and publishing processWriting formatBook promotionAdvice to other writersSpecial Guest: Matt Harrison.Links:Effective Book Authoring — Matt's coursePython Testing with pytest - Simple, Rapid, Effective, and Scalable

Oct 26, 2020 • 30min
136: Wearable Technology - Sophy Wong
Wearable technology is not just smart consumer devices like watches and activity trackers. Wearable tech also includes one off projects by designers, makers, and hackers and there are more and more people producing tutorials on how to get started. Wearable tech is also a great way to get both kids and adults excited about coding, electronics, and in general, engineering skills. Sophy Wong is a designer who makes really cool stuff using code, technology, costuming, soldering, and even jewelry techniques to get tech onto the human body. Sophy joins the show to answer my many questions about getting started safely with wearable tech.Some of the questions and topics:Can I wash my clothing if I've added tech to it?Is there any danger in wearing technology or building wearable tech?Are there actual wires and cables conductive thread in the fabric and textiles of some wearable tech projects?What's a good starter project? Especially if I want to do a wearable tech project with my kids?Dealing with stretch with clothing and non-bendy electronics.Some questions around the Sophy Wong and HackSpace "Wearable Tech Projects" book.How did you get into wearable tech?Do you have a favorite project?Can I get into wearable tech if I don't know how to code or solder?Are these projects accessible to people with limited budgets?Making projects so you can reuse the expensive bits on multiple projects.Special Guest: Sophy Wong.Links:sophywong.comWearable Tech Projects book — The wearable technology bookcostumes — The dress is on this page, as well as the Ghostbuster pack and costume.spacesuitMusic video with Sophy's space suitKobakant tutorials

Oct 20, 2020 • 22min
135: Speeding up Django Test Suites - Adam Johnson
All test suites start fast. But as you grow your set of tests, each test adds a little bit of time to the suite. What can you do about it to keep test suites fast? Some things, like parallelization, are applicable to many domains. What about, for instance, Django applications? Well, Adam Johnson has thought about it a lot, and is here to tell us how we can speed up our Django test suites. Topics include:parallelizing testsmoving from disk to memoryusing fake data and factory functionstargeted mockingSpecial Guest: Adam Johnson.Links:Speed Up Your Django Tests — the book by Adam JohnsonKukicha — "or twig tea, ..., is a Japanese blend made of stems, stalks, and twigs."

Oct 12, 2020 • 30min
134: Business Outcomes and Software Development - Benjamin Harding
Within software projects, there are lots of metrics we could measure. But which ones really matter. Instead of a list, Benjamin Harding shares with us a way of thinking about business outcomes that can help us with every day decision making. We talk about:Business outcomes vs vanity metricsAs a developer, how do you keep business outcomes in mindThinking about customer value all the timeCommunicating decisions and options in terms of costs and impact on business outcomesCompany culture and it's role in reinforcing a business outcome mindsetAnd even the role of team lead as impact multiplier I really enjoyed this conversation. But I admit that at first, I didn't realize how important this is on all software development. Metrics are front and center in a web app. But what about a service, or an embedded system with no telemetry. It still matters, maybe even more so. Little and big decisions developers face every day that have impact on costs and benefits with respect to customer value and business outcome, even if it's difficult to measure.Special Guest: Benjamin Harding.

Oct 5, 2020 • 27min
133: Major League Hacking - Jon Gottfried
Hackathons have been spreading around the world; many at university campuses. Major League Hacking, MLH, has been encouraging and helping hackathons.Hacking can be thought of as tinkering. Taking things apart and putting them back together as an interesting experience. There's always been some of this as part of software culture.The people at Major League Hacking have taken this to a whole new level, bringing together Tech creators who enjoy playing around with and crating new technology, on campuses, and now in virtual spaces, all over the world.Jonathon Gottfried, one of the cofounders of Major League Hacking, joins the show to talk about:hacker meetups and eventshackathonswhat it's like to go to a hackathonhow to help out with hackathons as an experienced engineer, even virtually as a mentorhackathons continuing virtually during the pandemicinternships and fellowships on open source projects to help students gain experience, even during the pandemicMLH approach to internships, giving interns a support group, including peers, mentors, and project maintainersand MLH itselfSpecial Guest: Jon Gottfried.Links:Major League Hacking

Sep 28, 2020 • 38min
132: mocking in Python - Anna-Lena Popkes
Using mock objects during testing in Python.Anna-Lena joins the podcast to teach us about mocks and using unittest.mock objects during testing. We discuss:the different styles of using mockspros and cons of mocksdependency injectionadapter patternmock hellmagical universeand much moreSpecial Guest: Anna-Lena Popkes.Links:Personal webpage of Anna-Lena PopkesMagical Universe — Awesome Python features explained using the world of magicTest & Code 102: Cosmic Python, TDD, testing and external dependencies — The episode where Harry Percival discusses mocking.Talk: Harry Percival - Stop Using Mocks (for a while) - YouTube — Talk: Harry Percival - Stop Using Mocks (for a while)unittest.mock AutospeccingMock Hell Talk (45 min version) Edwin Jung - PyCon 2019 Mock Hell Talk (30 min version) - Edwin Jung - PyConDE PyCon EstoniaKI macht Schule!Talk Python #186 : 100 Days of Python in a Magical Universe

Sep 21, 2020 • 8min
131: Test Smarter, Not Harder
Some people avoid writing tests. Some drudge through it painfully. There is a better way. In this episode, I'm going to share some advice from Luke Plant on how to "Test Smarter, Not Harder".Links:Test smarter, not harder - lukeplant.me.uk — The original article by Luke

Sep 13, 2020 • 34min
130: virtualenv activation prompt consistency across shells - an open source dev and test adventure - Brian Skinn
virtualenv supports six shells: bash, csh, fish, xonsh, cmd, posh. Each handles prompts slightly differently. Although the virtualenv custom prompt behavior should be the same across shells, Brian Skinn noticed inconsistencies. He set out to fix those inconsistencies. That was the start of an adventure in open source collaboration, shell prompt internals, difficult test problems, and continuous integration quirks. Brian Skinn initially noticed that on Windows cmd, a space was added between a prefix defined by --prompt and the rest of the prompt, whereas on bash no space was added.For reference, there were/are three nominal virtualenv prompt modification behaviors, all of which apply to the prompt changes that are made at the time of virtualenv activation:If the environment variable VIRTUAL_ENV_DISABLE_PROMPT is defined and non-empty at activation time, do not modify the prompt at all. Otherwise: If the --prompt argument was supplied at creation time, use that argument as the prefix to apply to the prompt; or,If the --prompt argument was not supplied at creation time, use the default prefix of "() " as the prefix (the environment folder name surrounded by parentheses, and with a trailing space after the last paren.Special Guest: Brian Skinn.Links:virtualenvInitial issue that started the adventurefinal PRpent: pent Extracts Numerical Text -- Mini-language driven parser for structured numerical dataLightening talk on pent

Sep 7, 2020 • 41min
129: How to Test Anything - David Lord
I asked people on twitter to fill in "How do I test _____?" to find out what people want to know how to test. Lots of responses. David Lord agreed to answer them with me. In the process, we come up with lots of great general advice on how to test just about anything.Specific Questions people asked:What makes a good test?How do you test web app performance?How do you test cookie cutter templates?How do I test my test framework? How do I test permission management?How do I test SQLAlchemy models and pydantic schemas in a FastAPI app?How do I test warehouse ETL code?How do I test and mock GPIO pins on hardware for code running MicroPython on a device?How do I test PyQt apps?How do I test web scrapers?Is it the best practice to put static html in your test directory or just snippets stored in string variables?What's the best way to to test server client API contracts?How do I test a monitoring tool?We also talk about:What is the Flask testing philosophy?What do Flask tests look like?Flask and Pallets using pytestCode coverage Some of the resulting testing strategies:Set up some preconditions. Run the function. Get the result.Don't test external services.Do test external service failures.Don't test the frameworks you are using.Do test your use of a framework.Use open source projects to learn how something similar to your project tests things.Focus on your code.Focus on testing your new code. Try to architect your application such that actual GUI testing is minimal.Split up a large problem into smaller parts that are easier to test.Nail down as many parts as you can.Special Guest: David Lord.

Aug 28, 2020 • 15min
128: pytest-randomly - Adam Johnson
Software tests should be order independent. That means you should be able to run them in any order or run them in isolation and get the same result.However, system state often gets in the way and order dependence can creep into a test suite. One way to fight against order dependence is to randomize test order, and with pytest, we recommend the plugin pytest-randomly to do that for you.The developer that started pytest-randomly and continues to support it is Adam Johnson, who joins us today to discuss pytest-randomly and another plugin he also wrote, called pytest-reverse.Special Guest: Adam Johnson.Links:pytest-randomly: pytest plugin to randomly order tests and control random.seedpytest-reverse: pytest plugin to reverse test order.Empirically revisiting the test independence assumptionpytest-xdistfactory_boy FakerNumPyHyrum's Law