Skip to content

Latest commit

 

History

History
26 lines (23 loc) · 577 Bytes

README.md

File metadata and controls

26 lines (23 loc) · 577 Bytes

settings-microservice

Testing

Test scripts are located in the tests directory. Before running tests, requirements.txt must be installed:

pip install -r requirements.txt

To run all the tests together from command line

  python -m unittest

or run each tests separately

  • Move to tests directory
  cd tests\
  • Then do
  python -m unittest test_delete_config.py
  python -m unittest test_add_config.py
  python -m unittest test_all_config.py
  python -m unittest test_rollback_config.py
  python -m unittest test_update_config.py