Modern Python Projects Transcripts
Chapter: CI
Lecture: Building projects is not just coding
Login or
purchase this course
to watch this video and the rest of the course contents.
0:00
When you work on a Python project, there are other things that you have to take care. Apart from just coding, based on what we learned so far,
0:08
those things could be running tests, rebuilding the documentation each time you change the doc strings in your code or running some
0:17
static analysis tool like black or flake 8 to make sure that your code looks good Those things are probably not as fun as writing code,
0:25
but you still have to take care of them from time to time. But since those are mostly repetitive task that requires you to run the same set of
0:33
commands, you can automate most of them.