16 lines
283 B
Bash
Executable file
16 lines
283 B
Bash
Executable file
#!/bin/bash
|
|
|
|
program=${0##*/}
|
|
progdir=${0%/*}
|
|
|
|
cd $progdir/.. # now at trunk/
|
|
|
|
test/test-setup # create a patched django for test purposes, and more
|
|
|
|
test/run-pyflakes ietf
|
|
|
|
PYTHONPATH=test/lib python ietf/manage.py test # run tests with our patched django
|
|
|
|
test/test-teardown
|
|
|