Coverage for nexusLIMS/__main__.py: 100%

3 statements  

« prev     ^ index     » next       coverage.py v7.11.3, created at 2026-03-24 05:23 +0000

1"""Entry point when running: python -m nexusLIMS. 

2 

3This delegates to the record builder by default for backwards compatibility. 

4""" 

5 

6if __name__ == "__main__": 

7 import runpy 

8 

9 runpy.run_module("nexusLIMS.builder.record_builder", run_name="__main__")