Skip to content
New issue

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

misbehavior in run --source (?) #328

Closed
nedbat opened this issue Oct 13, 2014 · 5 comments
Closed

misbehavior in run --source (?) #328

nedbat opened this issue Oct 13, 2014 · 5 comments
Labels
bug Something isn't working run

Comments

@nedbat
Copy link
Owner

nedbat commented Oct 13, 2014

Originally reported by Anonymous


The below script reproduces the problem.
In summary, I expect that when the argument to -m and --source are equal, I should never see the code run, and get a warning "module x was never imported", but this is not the current behavior.

#!/usr/bin/env python
# pylint:disable=missing-docstring
'''
$ python repro.py
in example:
true
exiting example...

Coverage.py warning: Module example was never imported.
Coverage.py warning: No data was collected.
Name    Stmts   Miss  Cover
---------------------------

$ pip freeze | grep coverage
coverage==3.7.1
$ python -V
Python 2.7.8
'''


def main():
    from shutil import rmtree
    rmtree('repro', ignore_errors=True)

    from os import mkdir
    mkdir('repro')
    mkdir('repro/code')
    with open('repro/code/example.py', 'w') as examplepy:
        examplepy.write(r'''\
print('in example:')
if True:
    print('true')
else:
    print('false')
print('exiting example...\n')''')

    mkdir('repro/workdir')

    from os import environ
    from os.path import realpath
    env = environ.copy()
    env['PYTHONPATH'] = realpath('repro/code')

    from subprocess import Popen
    Popen(
        ('coverage', 'run', '--source=example', '-m', 'example'),
        cwd='repro/workdir',
        env=env,
    ).wait()

    Popen(
        ('coverage', 'report'),
        cwd='repro/workdir',
    ).wait()


if __name__ == '__main__':
    exit(main())

@nedbat
Copy link
Owner Author

nedbat commented Oct 13, 2014

Original comment by Buck Evan (Bitbucket: bukzor, GitHub: bukzor)


I posted this ticket -.-

@nedbat
Copy link
Owner Author

nedbat commented Oct 13, 2014

Original comment by Buck Evan (Bitbucket: bukzor, GitHub: bukzor)


This happens because the module's name is __main__ when imported via -m.

The unexpected thing is that the module-name as --source sees it is not always equal to the module-name as -m sees it.

I should have thought of this much earlier, but didn't. I think this is surprising enough that I'd like to make it work as expected. Is there any way to calculate the "real" name of a __main__ module?

@nedbat
Copy link
Owner Author

nedbat commented Oct 14, 2014

Original comment by Buck Evan (Bitbucket: bukzor, GitHub: bukzor)


Proof of concept for my solution idea here: https://bitbucket.org/ned/coveragepy/pull-request/41/make-source-and-m-play-nice-together/diff

@nedbat
Copy link
Owner Author

nedbat commented Oct 15, 2014

Original comment by Buck Evan (Bitbucket: bukzor, GitHub: bukzor)


I note that providing --source=__main__ does not provide a workaround to this problem, as the current code sees coveragepy as the __main__ module and then stops looking.

@nedbat
Copy link
Owner Author

nedbat commented Nov 25, 2014

Fixed in 1869e6b940e4 (bb)

@nedbat nedbat closed this as completed Nov 25, 2014
@nedbat nedbat added major bug Something isn't working run labels Jun 23, 2018
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working run
Projects
None yet
Development

No branches or pull requests

1 participant