async def test_executable(self):
     scripts_dir = standardscripts.get_scripts_dir()
     script_path = (
         scripts_dir
         / "auxtel"
         / "detector_characterization"
         / "get_std_flat_dataset.py"
     )
     await self.check_executable(script_path)
Exemplo n.º 2
0
 async def test_executable(self):
     scripts_dir = standardscripts.get_scripts_dir()
     script_path = scripts_dir / "set_summary_state.py"
     await self.check_executable(script_path)
 async def test_executable(self):
     scripts_dir = standardscripts.get_scripts_dir()
     script_path = scripts_dir / "auxtel" / "prepare_for_flat.py"
     await self.check_executable(script_path)
Exemplo n.º 4
0
 async def test_executable(self):
     scripts_dir = standardscripts.get_scripts_dir()
     script_path = scripts_dir / "auxtel" / "offline_atcs.py"
     await self.check_executable(script_path)
Exemplo n.º 5
0
 def test_get_default_standard_scripts_dir(self):
     standard_dir = scriptqueue.get_default_scripts_dir(is_standard=True)
     assert isinstance(standard_dir, pathlib.Path)
     assert standard_dir.samefile(standardscripts.get_scripts_dir())
     assert standard_dir.name == "scripts"
 async def test_executable(self):
     scripts_dir = standardscripts.get_scripts_dir()
     script_path = scripts_dir / "maintel" / "stop_tracking.py"
     await self.check_executable(script_path)
Exemplo n.º 7
0
 async def test_maintel_executable(self):
     scripts_dir = get_scripts_dir()
     script_path = scripts_dir / "maintel" / "scheduler" / "standby.py"
     await self.check_executable(script_path)
Exemplo n.º 8
0
 def test_get_scripts_dir(self):
     scripts_dir = standardscripts.get_scripts_dir()
     print(f"*** script dir: {scripts_dir}")
     assert scripts_dir.is_dir()
Exemplo n.º 9
0
 async def test_auxtel_executable(self):
     scripts_dir = get_scripts_dir()
     script_path = scripts_dir / "auxtel" / "scheduler" / "enable.py"
     await self.check_executable(script_path)
 async def test_executable(self):
     scripts_dir = standardscripts.get_scripts_dir()
     script_path = scripts_dir / "auxtel" / "track_target_and_take_image.py"
     await self.check_executable(script_path)
 async def test_executable(self):
     scripts_dir = standardscripts.get_scripts_dir()
     script_path = scripts_dir / "maintel" / "enable_comcam.py"
     await self.check_executable(script_path)
Exemplo n.º 12
0
 async def test_executable(self):
     scripts_dir = standardscripts.get_scripts_dir()
     script_path = scripts_dir / "auxtel" / "calsys_takedata.py"
     await self.check_executable(script_path)