コード例 #1
0
def test_is_package_no_setup_py(tmp_path):
    assert not cpv.is_package(tmp_path)
コード例 #2
0
def test_is_package(tmp_path):
    (tmp_path / "setup.py").write_text("")
    assert cpv.is_package(tmp_path)