def configrep(): """Return a ConfigRep instance using the included minipippy package.""" return ConfigRep(setup_path="tests/minipippy")
def test_install_package(): """Test the class method.""" assert ConfigRep.install_package("pyyaml")
def bad_configrep(): """Return a ConfigRep instance with a bad config file.""" return ConfigRep(setup_path="pathdoesnotexist")