🚥To Begin With
Installation and setup requirements
Installation
Please proceed with installation steps as mentioned above, once done. please proceed with the below steps for the simple setup.
Example
Create a new file named: test_sample.py
, containing a function, and a test:
# content of test_sample.py
def inc(x):
return x + 1
def test_answer():
assert inc(3) == 5
def test_simple():
assert inc(3) == 4
referred from pytest quick example.
Run your tests now: if the handshake is installed in the working venv. it would auto-invoke this plugin

Last updated