Tag Archives | python

The lamest GitHub project

I’ve just pushed the first version of markdown.py to GitHub. It doesn’t do anything except echo the contents of any file you give it. The reason why it’s useful at all are documented in Stub for markdown.py. However, it occurred to me that as it stands now, it might be the lamest, most useless project [...]

Continue Reading 0

py.test from behind a firewall

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 [...]

Continue Reading 2

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 [...]

Continue Reading 0