简体   繁体   中英

How do you create a python package with a built in “test/main.py” main function?

Desired directory tree:

Fibo
|-- src
|   `-- Fibo.py
`-- test
    `-- main.py

What I want is to call python main.py after cd'ing into test and executing main.py will run all the unit tests for this package.

Currently if I do:

import Fibo

def main():
    Fibo.fib(100)

if __name__ == "__main__":
    main()

I get an error: " ImportError: No module named Fibo ".

But if I do:

import sys

def main():
    sys.path.append("/home/tsmith/svn/usefuldsp/trunk/Labs/Fibo/src")
    import Fibo
    Fibo.fib(100)

if __name__ == "__main__":
    main()

This seems to fix my error. And I could move forward... but this isn't a python package. This is more of a "collection of files" approach.

How would you setup your testing to work in this directory structure?

If I want to import a module that lives at a fixed, relative location to the file I'm evaluating, I often do something like this:

try:
    import Fibo
except ImportError:
    import sys
    from os.path import join, abspath, dirname
    parentpath = abspath(join(dirname(__file__), '..'))
    srcpath = join(parentpath, 'src')
    sys.path.append(srcpath)
    import Fibo

def main():
    Fibo.fib(100)

if __name__ == "__main__":
    main()

If you want to be a good namespace-citizen, you could del the no longer needed symbols at the end of the except block.

Adding /home/tsmith/svn/usefuldsp/trunk/Labs/Fibo/src to your PYTHONPATH environment variable would allow you to write

import Fibo

def main():
    Fibo.fib(100)

if __name__ == "__main__":
    main()

and have it import .../Fibo/src/Fibo.py correctly.

快速而肮脏的方式:创建符号链接

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM