* Added correct dates for two entries in ipr_detail which had 0000-00-00, in the sql_fixup.sql file * Fixed test/run so it can be run from any directory - Legacy-Id: 258
18 lines
291 B
Bash
Executable file
18 lines
291 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -x
|
|
|
|
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
|
|
|