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

doctest.testfile() confuses source detection #52

Closed
nedbat opened this issue Mar 10, 2010 · 1 comment
Closed

doctest.testfile() confuses source detection #52

nedbat opened this issue Mar 10, 2010 · 1 comment
Labels
bug Something isn't working

Comments

@nedbat
Copy link
Owner

nedbat commented Mar 10, 2010

Originally reported by Julian O (Bitbucket: oddthinking, GitHub: oddthinking)


The doctest.testmod() method searches the current file for comments of a specific format, and runs them as a test. When I use that, coverage.py does an excellent job.

The doctest.testfile() method searches another file for the comments, and runs them as a test. When I use that, coverage.py complains that it is unable to find the source code.

I did not expect the .doctest file to give me a percentage coverage, but I did hope it would be able to understand the format of the filename, and to handle it gracefully.

Note: This is an different issue to <<issue 19>>.

Here is an example:

  • File 1: factorial_testfile.py

    def factorial(n):
    """ Compute the factorial of a natural number."""

      if n == 0:
          return 1
      else:
          return n * factorial(n-1)
    

    if name == "main":
    import doctest
    doctest.testfile("factorial.doctest")

  • File 2: factorial.doctest

    from factorial_testfile import factorial
    factorial(0)
    1
    factorial(1)
    1
    factorial(3)
    6

Here is what happens (under Windows, Python 2.6).

C:\temp\coveragetest>coverage run factorial_testfile.py

C:\temp\coveragetest>coverage report -m
Name                 Stmts   Exec  Cover   Missing
--------------------------------------------------
<doctest factorial   NoSource: No source for code: 'c:\\temp\\coveragetest\\<doctest factorial.doctest[0]>': [Errno 22] invalid mode ('rU') or filename: 'c:\\temp\\coveragetest\\<doctest factorial.doctest[0]>'
<doctest factorial   NoSource: No source for code: 'c:\\temp\\coveragetest\\<doctest factorial.doctest[3]>': [Errno 22] invalid mode ('rU') or filename: 'c:\\temp\\coveragetest\\<doctest factorial.doctest[3]>'
<doctest factorial   NoSource: No source for code: 'c:\\temp\\coveragetest\\<doctest factorial.doctest[1]>': [Errno 22] invalid mode ('rU') or filename: 'c:\\temp\\coveragetest\\<doctest factorial.doctest[1]>'
<doctest factorial   NoSource: No source for code: 'c:\\temp\\coveragetest\\<doctest factorial.doctest[2]>': [Errno 22] invalid mode ('rU') or filename: 'c:\\temp\\coveragetest\\<doctest factorial.doctest[2]>'
factorial_testfile       7      7   100%

@nedbat
Copy link
Owner Author

nedbat commented May 23, 2010

This was fixed in <<changeset 9ef11bf7e50d (bb)>>.

@nedbat nedbat closed this as completed May 23, 2010
@nedbat nedbat added major bug Something isn't working 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
Projects
None yet
Development

No branches or pull requests

1 participant