PytestSetting Project Test System: Difference between revisions
Jump to navigation
Jump to search
Line 23: | Line 23: | ||
</syntaxhighlight> | |||
=Environment= | |||
Add the path to the directory that contains the module to test (in this case ./src/main/python contains my_module_to_test.py): | |||
<syntaxhighlight lang='bash'> | |||
PYTHONPATH="$(dirname $0)/src/main/python" | |||
export PYTHONPATH | |||
</syntaxhighlight> | </syntaxhighlight> |
Revision as of 01:15, 9 June 2022
Internal
Layout
... └─ test └─ python └─ my_module ├─ data └─ test_my_function.py
Structure of a Test File
import pytest
from pathlib import Path
from my_module_to_test import some_function
def get_data_file(file_name):
return Path(Path(__file__).parent, f'./data/{file_name}')
Environment
Add the path to the directory that contains the module to test (in this case ./src/main/python contains my_module_to_test.py):
PYTHONPATH="$(dirname $0)/src/main/python"
export PYTHONPATH