def test_1(tmpdir): tarname = "pyemir/pyemir-image-tutorial-v1.tar.gz" base = "https://guaix.fis.ucm.es/data/" url = base + tarname downloaded = download_cache(url) tmpdir.chdir() # Uncompress with tarfile.open(downloaded.name, mode="r:gz") as tar: tar.extractall() os.remove(downloaded.name) print(tmpdir) main(['run', 'obs1.yaml', '-r', 'control.yaml']) assert False
# # Copyright 2008-2016 Universidad Complutense de Madrid # # This file is part of Numina # # Numina is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # Numina is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with Numina. If not, see <http://www.gnu.org/licenses/>. # """User command line interface of Numina.""" if __name__ == "__main__": from numina.user.cli import main main()
def run_recipe(): main(['run', 'obsrun.yaml', '-r', 'control.yaml'])