https://github.com/RadioAstronomySoftwareGroup/pyuvdata
Revision 4a8f479e4cd1c1203c5a65476e0de73841bd869a authored by Bryna Hazelton on 11 September 2020, 22:20:10 UTC, committed by Bryna Hazelton on 11 December 2020, 19:21:28 UTC
1 parent 4fa5ad8
Raw File
Tip revision: 4a8f479e4cd1c1203c5a65476e0de73841bd869a authored by Bryna Hazelton on 11 September 2020, 22:20:10 UTC
fix bug with multiple fhd file read, no layout files
Tip revision: 4a8f479
conftest.py
# -*- mode: python; coding: utf-8 -*-
# Copyright (c) 2020 Radio Astronomy Software Group
# Licensed under the 2-clause BSD License

"""Testing environment setup and teardown for pytest."""
import os
import shutil

import pytest
from pyuvdata.data import DATA_PATH


@pytest.fixture(autouse=True, scope="session")
def setup_and_teardown_package():
    """Make data/test directory to put test output files in."""
    testdir = os.path.join(DATA_PATH, "tutorial_output/")
    if not os.path.exists(testdir):
        print("making test directory")
        os.mkdir(testdir)

    yield

    shutil.rmtree(testdir)
back to top