Hacker News new | ask | show | jobs
by dagw 456 days ago
Once rebuilding your venv takes negligible time, it opens up for all kinds of new ways to develop. For example I now always run my tests in a clean environment, just to make sure I haven't added anything that only happens to work in my dev venv.
2 comments

That's smart. Oh, you used `pip install` to fix a missing import, but forgot to add it to pyproject.toml? You'll find out quickly.
I thought you wanted to test your program, but seems you want to make sure that your unzip library keeps working :D