Commit c86f2da3 authored by Kirill Smelkov's avatar Kirill Smelkov

.

parent 6ed71cfd
#!/usr/bin/env python2 #!/usr/bin/env python2
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# Copyright (C) 2018 Nexedi SA and Contributors. # Copyright (C) 2018-2021 Nexedi SA and Contributors.
# Kirill Smelkov <kirr@nexedi.com> # Kirill Smelkov <kirr@nexedi.com>
# #
# This program is free software: you can Use, Study, Modify and Redistribute # This program is free software: you can Use, Study, Modify and Redistribute
# it under the terms of the GNU General Public License version 3, or (at your # it under the terms of the GNU General Public License version 3, or (at your
...@@ -18,7 +18,7 @@ ...@@ -18,7 +18,7 @@
# #
# See COPYING file for full licensing terms. # See COPYING file for full licensing terms.
# See https://www.nexedi.com/licensing for rationale and options. # See https://www.nexedi.com/licensing for rationale and options.
"""generate reference database for tests""" """generate reference NEO SQLite database for tests"""
from zodbtools.util import storageFromURL from zodbtools.util import storageFromURL
from neo.tests.functional import NEOCluster from neo.tests.functional import NEOCluster
...@@ -46,11 +46,6 @@ def main(): ...@@ -46,11 +46,6 @@ def main():
cluster.stop() cluster.stop()
cluster.waitAll() cluster.waitAll()
# remove sqlite journal XXX should not exist? (meaning the tranaction was not committed)
for f in glob("testdata/*-journal"):
os.remove(f)
if __name__ == '__main__': if __name__ == '__main__':
main() main()
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