microweb-integration
This repository contains a selenium test suite for running integration tests on the microweb project.
To run the tests, copy config.py.example
to config.py
and replace the values with the ones used for tests.
Run:
pip install -r requirements.txt
in a virtualenv to install python dependencies.
Run:
python test_microweb.py
to run the integration tests.
You can run a specific class or test in the usual unittest way:
python test_microweb.py [TestClassName][.test_method_name]