From the course: Debug Your Code with AI
Unlock this course with a free trial
Join today to access over 25,500 courses taught by industry experts.
Exploring the project
From the course: Debug Your Code with AI
Exploring the project
- [Instructor] Let's explore the project. Let's explore what we're going to be working with. And in this case, this is a Vim plugin. Vim is a text editor. It's a text editor that runs in the terminal, and this is a plugin for running tests, running Python tests and using a framework called Pytest. If you're familiar with Python, you've probably heard about Pytest. And the way it works is by allowing you to not leave the terminal and run some tests with integration directly into the text editor. It allows you to go through certain errors and certain information that comes back when you are interacting with these in the terminal. So why is this interesting and what's the thing here? Well, it's that there is a deep integration with Python itself. Why is this interesting for debugging? Well, it has several different components that makes it very interesting. I'm going to scroll all the way to the top here, very fast, and I'm going to show you that it has some tests. So there's some…