PytestSetting Project Test System: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 17: Line 17:
=Environment=
=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):
Add the path to the directory that contains the module to test (in this case <code>./src/main/python</code> contains <code>my_module_to_test.py</code>):


<syntaxhighlight lang='bash'>
<syntaxhighlight lang='bash'>

Revision as of 01:37, 9 June 2022

Internal

Install pytest

Install pytest in the virtual environment associated with your project:

Pytest Installation

Layout

...
 └─ test
     └─ python
         └─ my_module
             ├─ data
             └─ test_my_function.py

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

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}')