Skip to content

Latest commit

 

History

History

tests

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 

Unit Testing

Install test required dependencies:

pip install -r dependencies.txt

Performing a quick AREkit library installation [link]

pip install -e ../ --no-deps

Using pytest to run all the test and gather report into pytest_report.html document.

NOTE: Launch from the root project folder

python -m pytest --html=pytest_report.html --self-contained-html --continue-on-collection-errors .

Publishing Release

Navigate to the root folder of this project and execute:

python3 setup.py sdist bdist_wheel
twine check ./dist/*
twine upload ./dist/*