Skip to content
Snippets Groups Projects
Commit 697e7375 authored by Nils Krumnack's avatar Nils Krumnack
Browse files

switch unit test to using LocalDriver

Mostly so that it acts as a test of whether the EventLoop python
configuration would work properly on the grid.
parent 138ddd79
No related branches found
No related tags found
No related merge requests found
......@@ -76,6 +76,9 @@ if options.unit_test:
os.rmdir( submitDir )
pass
# Run the job using the direct driver.
driver = ROOT.EL.DirectDriver()
# Run the job using the local driver. This is intentionally the local
# driver, unlike most other tests that use the direct driver. That
# way it tests whether the code works correctly with that driver,
# which is a lot more similar to the way the batch/grid drivers work.
driver = ROOT.EL.LocalDriver()
driver.submit( job, submitDir )
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