Run tests

Unit tests can be run with pytest:

pip install -e .[test]                       # Install test requirements

We provide a mock implementation that allows you to execute the tests for SVM4X without hardware.

pytest                                       # Run all tests for SVM4X using a driver mock

To run the tests against real hardware, you must have your SVM4X sensor connected to a serial port of your development machine. Pass the serial port used, e.g. COM1, as command line argument when running the tests:

pytest --serial-port=COM1                    # Run all tests for SVM4X an the sensor attached to COM1