Commit f57a753b authored by Denis Bilenko's avatar Denis Bilenko

add greentest/clean_db.py

parent 4fc69f4b
#!/usr/bin/python
from record_results import get_results_db, sqlite3
if __name__=='__main__':
c = sqlite3.connect(get_results_db())
c.execute('delete from testresult where changeset glob "*+"')
c.commit()
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment