示例#1
0
def test_directory_structure():
    base = get_base_directory()
    output = get_output_directory()
    cache = get_cache_directory()
    assert "cache" in cache
    assert base in cache
    # Could be an env. variable
    if "model-runs" in output:
        assert base in output
示例#2
0
def test_directory_structure():
    base = get_base_directory()
    output = get_output_directory()
    cache = get_cache_directory()
    assert "cache" in cache
    assert base in cache
    # Could be an env. variable
    if "model-runs" in output:
        assert base in output
示例#3
0
def test_output_directory_envvar():
    os.environ["OCELOT_OUTPUT"] = os.getcwd()
    assert get_output_directory() == os.getcwd()
示例#4
0
def test_output_directory():
    assert get_output_directory()
示例#5
0
def test_output_directory_envvar():
    os.environ["OCELOT_OUTPUT"] = os.getcwd()
    assert get_output_directory() == os.getcwd()
示例#6
0
def test_output_directory():
    assert get_output_directory()