I wanted to try out pytest (or py.test, I’ve heard it both ways). But I’m behind a firewall, so pip and easy_install don’t work that great. I’m also running cygwin, with several versions of python so I can test compatibility of scripts across 2.6, 2.7, and 3.2. Trial and error gets me to these steps [...]
Tag Archives | pytest
Testing in Python
I’ve been using Python for writing test code for many years now. I’ve used several test frameworks, most of them proprietary. However, I’d like to utilize some of the open source frameworks available. Right now, I’m doing two things. 1. Writing my own framework. 2. Investigating pytest. Hopefully I will have some results from both [...]