We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
externals
Here is a test case
def test_relative_imports_same_prefix(capsys): files = """ foo: - __init__.py - a.py: | from foobar import b foobar: - __init__.py - b.py """ with create_files(files) as workdir: assert simpledeps('foo') == { 'foobar -> foo.a', 'foobar.b -> foo.a' } pydeps(fname='foo', externals=True) io = capsys.readouterr() assert ast.literal_eval(io.out) == ['foobar']
At the last line, the current bug is causing it returning []
[]
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Here is a test case
At the last line, the current bug is causing it returning
[]
The text was updated successfully, but these errors were encountered: