Skip to content

import problem in coverage #2

@jlettvin

Description

@jlettvin

My project is: code_quality

When I run pep8/pylint/pyflakes I must import one way.
When I run coverage I must import the other way (see below).
This appears to be a bug in coverage.
My current workaround for the problem is this:

try:
    from code_quality import (Dict)
except:
    try:
        from Dict import (Dict)
    except:
        print "from standard: Failed to import Dict.Dict"

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions