# setting up end-to-end testing

These tests assume you have access to a kubernetes cluster previously
arranged and available through kubectl commands. You can use the command

    kubectl version

to verify you can see a remote system

## Install pytest and related dependencies

    virtualenv .venv
    source .venv/bin/activate
    pip3 install -r test-requirements.txt

 ## Run the tests

    pytest

    # show more detail of the test/fail and test names
    pytest -v

    # show all standard output captured from the tests during execution
    pytest -rapP

    # run the rests and general JUnit XML result file
    pytest --junitxml=results.xml
