Files @ 83dc5e1e183e
Branch filter:

Location: Morevna/src/tests/__init__.py - annotation

Laman
regularly flushing the hash tree to the disk during a data transfer
import sys


class RedirectedOutput():
	_stdout = None

	@classmethod
	def setUpClass(cls):
		cls._stdout = sys.stdout
		sys.stdout = open("/tmp/morevna-stdout.log", mode="a")

	@classmethod
	def tearDownClass(cls):
		sys.stdout.close()
		sys.stdout = cls._stdout