def neo_package(request):
    package_name = request.param
    yield package_name
    try:
        shakedown.uninstall_package_and_data(package_name, 'neo4j/core')
    except Exception as e:
        # cleanup does NOT fail the test
        print(e)
def package(request):
    package_name = request.param
    yield package_name
    try:
        shakedown.uninstall_package_and_data(package_name)
    except Exception as e:
        # cleanup does NOT fail the test
        print(e)