Skip to content
Snippets Groups Projects
Commit 2c6939de authored by James Beacham's avatar James Beacham
Browse files

Merge branch 'cherry-pick-1d423771' into '21.0'

Merge branch 'test.G4AtlasApps-20171125' into 'master'

See merge request atlas/athena!7128

Former-commit-id: 00e349a7b47f9bbcc09b69f78802e037108cca59
parents 5187a41f 497c5597
No related branches found
No related tags found
No related merge requests found
......@@ -3,6 +3,7 @@
import pickle
import subprocess
import unittest
import os
class TestAtlasG4Cosmics(unittest.TestCase):
......@@ -364,4 +365,8 @@ class TestAtlasG4Cosmics(unittest.TestCase):
if __name__ == '__main__':
dirname = 'cosmics_config_test'
os.system ('rm -rf ' + dirname)
os.mkdir (dirname)
os.chdir (dirname)
unittest.main()
......@@ -3,6 +3,7 @@
import pickle
import subprocess
import unittest
import os
class TestAtlasG4(unittest.TestCase):
......@@ -281,4 +282,8 @@ class TestAtlasG4(unittest.TestCase):
if __name__ == '__main__':
dirname = 'tf_config_test'
os.system ('rm -rf ' + dirname)
os.mkdir (dirname)
os.chdir (dirname)
unittest.main()
......@@ -3,6 +3,7 @@
import pickle
import subprocess
import unittest
import os
class TestTestBeam(unittest.TestCase):
......@@ -294,4 +295,8 @@ class TestTestBeam(unittest.TestCase):
if __name__ == '__main__':
dirname = 'TestBeam_tf_config_test'
os.system ('rm -rf ' + dirname)
os.mkdir (dirname)
os.chdir (dirname)
unittest.main()
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