NIKLAS 1 222
This example is part of the Python Testing 101 series from Automation Panda. It will work for Python 2 and 3.
This project has two modules:
com.automationpanda.example.calc_func
contains math functions.com.automationpanda.example.calc_class
contains a basic Calculator class.
Test modules are placed under the tests
directory.
Note that tests
is not a Python package and has no "__init__.py" file.
pytest has many command line options with a powerful discovery mechanism:
python -m pytest
to discover and run all tests from the current directorypython -m pytest -v
to explicitly print the result of each test as it is runpython -m pytest tests/test_calc_func.py
to run only the math function testspython -m pytest tests/test_calc_class.py
to run only the Calculator class testspython -m pytest --junitxml=results.xml
to generate a JUnit-style XML test reportpython -m pytest -h
for command line help
It is also possible to run pytest directly with the "pytest" or "py.test" command, instead of using the longer "python -m pytest" module form. However, the shorter command does not append the current directory path to PYTHONPATH.
Configuration settings may also be added to "pytest.ini".# ci-python-tests