Skip to content
Snippets Groups Projects
Commit 1caa029b authored by Vermaat's avatar Vermaat
Browse files

Use test mail address in batch unit tests

parent 65b150f8
No related branches found
No related tags found
No related merge requests found
......@@ -103,6 +103,14 @@ class Scheduler() :
if mutalyzer.is_test():
return
# Note: The above check with mutalyzer.is_test is bogus, since during
# a normal unit test, the batch checker process is not started in the
# environment of the unit tests.
# As sort of a hack, we therefore check for the patented address
# 'test@test.test', used in the unit tests.
if mailTo == 'test@test.test':
return
#TODO: Handle Connection errors in a try, except clause
#Expected errors: socket.error
......
......@@ -284,7 +284,7 @@ class TestWSGI():
if arg1:
form['arg1'] = arg1
form['batchType'] = batch_type
form['batchEmail'] = 'm.vermaat.hg@lumc.nl'
form['batchEmail'] = 'test@test.test'
form.set('batchFile', ('test_%s.txt' % batch_type,
file))
r = form.submit()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment