Skip to content

Commit

Permalink
added .gitignore and test-working script
Browse files Browse the repository at this point in the history
  • Loading branch information
Rasmus Andersson committed May 5, 2009
1 parent 008e63e commit 025d97e
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 6 deletions.
2 changes: 2 additions & 0 deletions .gitignore
@@ -0,0 +1,2 @@
src/system_config.h
build
6 changes: 0 additions & 6 deletions src/system_config.h

This file was deleted.

11 changes: 11 additions & 0 deletions test-working
@@ -0,0 +1,11 @@
#!/bin/bash
# Test working copy
VERSIONS='2.4 2.5 2.6 2.7 3.0'
for PV in $VERSIONS; do
if (which python$PV>/dev/null); then
echo "$0:" "Building and testing with Python $PV"
rm -rf build/lib.*
python$PV setup.py build -f > /dev/null || exit 1
PYTHONPATH="$(echo $(pwd)/build/lib.*-$PV)" python$PV -c 'import fcgiev.test as t;t.test()' || exit 1
fi
done

0 comments on commit 025d97e

Please sign in to comment.