Is there a particular directory structure used for TDD in Python?
Tutorials talk about the content of the tests, but not where to place them
From poking around Python Koans, suspect its something like:
/project/main_program.py # This has main method, starts program
/project/classes/<many classes>.py
/project/main_test.py # This simply directs unittest onto tests, can use parameters fed to it to customise tests for environment
/project/tests/<many tests>.py
# to run tests, type "python -m unittest main_test.py" (into a terminal)
# to run program, type "python main_program.py"
Am I doing this right? Is there a good guide which teaches the directory hierarchy for TDD? I heard that having mixed files of code and tests is bad.
References:
Tests are defined as functions prefixed with test_ and contain one or more statements that assert code produces an expected result or raises a particular error. Tests are put in files of the form test_*. py or *_test.py , and are usually placed in a directory called tests/ in a package's root.
Run all Python tests in a directoryFrom the context menu, select the corresponding run command. If the directory contains tests that belong to the different testing frameworks, select the configuration to be used. For example, select Run 'All tests in: <directory name>' Run pytest in <directory name>'.
Based on your project, Whatever style lets you
The python koans/etc are just guidelines. In the end you want to uphold DRY with your unittests and be able to test easily, maintainably and intuitively. In the end it is up to you to decide your folder structure.
I feel like you are focusing too much on satisfying convention instead of satisfying your project.
There are two basic options: in a top-level "test" (or "tests") directory, or in "test" directories within your package at every level. The former has the advantage of making it easy to have both unit tests and other tests consistently. The latter has the advantage of making it easy to run your tests against the installed version of the code, and is recommended by this blog post, which describes the basic structure that works well for Python projects.
At the end of the day, the important thing is to make them easy to find and run.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With