mirror of
https://github.com/openmc-dev/openmc.git
synced 2026-07-24 12:05:32 -04:00
11 lines
208 B
Python
11 lines
208 B
Python
#!/usr/bin/env python
|
|
|
|
import os
|
|
import sys
|
|
sys.path.insert(0, os.pardir)
|
|
from testing_harness import TestHarness
|
|
|
|
|
|
if __name__ == '__main__':
|
|
harness = TestHarness('statepoint.15.h5')
|
|
harness.main()
|