This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

Bug 187719 - NB can't run tests in packages
Summary: NB can't run tests in packages
Status: NEW
Alias: None
Product: python
Classification: Unclassified
Component: Testing (show other bugs)
Version: 6.x
Hardware: PC All
: P2 normal (vote)
Assignee: Jenselme
URL:
Keywords: TEST
Depends on:
Blocks:
 
Reported: 2010-06-17 11:17 UTC by ravx
Modified: 2015-11-27 20:31 UTC (History)
1 user (show)

See Also:
Issue Type: DEFECT
Exception Reporter:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description ravx 2010-06-17 11:17:39 UTC
In a situation where we have packages in a project, you can not run the tests.
For example, if we have a structure:

<Top Level>:
        |
        +-Main:
        |   |-__init__.py
        |   |-file1.py
        |
       +-Test:
            |-__init__.py
            |-file1_test.py (Test Unit)

When I try to run the tests in the module file1_test.py get an error from nb_test_runner.py (line 216):
"""
0 tests, 0 failures, 0 errors
    module = __import__ (module_name, globals (), locals (), module_name)
ImportError: No module named file1_test.py
"""
When you move to file1_test.py <Top Level> everything is in OK - tests runs. What's more - no problem running the modules in packages, such as main.file1.py
Comment 1 Lou Dasaro 2015-09-06 05:46:54 UTC
Reassigning to Julien for evaluation.
Comment 2 Jenselme 2015-09-29 14:12:34 UTC
Just tested: it seems that in order to be detected (skeaking for setuptools projects), the tests must be in the main module (eg aot and aot/tests). They are however run by ant even if the user is asked about a main script to execute.

That will require some work after the 8.1 release.