Skip to content
Snippets Groups Projects
Select Git revision
  • bebb62f6394dc8f913d387621f25596c5cf1b81d
  • master default protected
  • develop protected
  • cmake_boost_refactor
  • ubuntu_ci
  • mmtf
  • non-orthogonal-maps
  • no_boost_filesystem
  • data_viewer
  • 2.11.1
  • 2.11.0
  • 2.10.0
  • 2.9.3
  • 2.9.2
  • 2.9.1
  • 2.9.0
  • 2.8.0
  • 2.7.0
  • 2.6.1
  • 2.6.0
  • 2.6.0-rc4
  • 2.6.0-rc3
  • 2.6.0-rc2
  • 2.6.0-rc
  • 2.5.0
  • 2.5.0-rc2
  • 2.5.0-rc
  • 2.4.0
  • 2.4.0-rc2
29 results

dng_startup.py

Blame
  • action_test_verbose.py 511 B
    import sys
    
    # this is needed so there will be no test_actions.pyc created in the source
    # directory
    sys.dont_write_bytecode = True
    
    import test_actions
    
    class HelpActionTests(test_actions.ActionTestCase):
        def __init__(self, *args, **kwargs):
            test_actions.ActionTestCase.__init__(self, *args, **kwargs)
            self.pm_action = 'help'
    
        def testExit0(self):
            self.RunExitStatusTest(0, list(), verbose=True)
    
    if __name__ == "__main__":
        from ost import testutils
        testutils.RunTests()