# redalert **Repository Path**: mirrors_mongodb/redalert ## Basic Information - **Project Name**: redalert - **Description**: A system state validation tool - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-09 - **Last Updated**: 2025-06-11 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # redalert A system image validation tool ## Installation / Usage To install use pip: $ pip install redalert Or clone the repo: $ git clone https://github.com/mongodb/redalert.git $ python setup.py install Additionally standalone binaries are provided on the release page. # Contributing ## Testing To test redalert you need the following prerequisites: - vagrant - Virtualbox (for vagrant) - make Then simply run ``` make test ``` This will run all of the tests including "local" tests on your machine. It will then spin up 3 vagrant VMs for testing the platform specific code. To only run the local or "platform agnostic" tests then run: ``` make unit_tests ``` To run a specific platform in vagrant one of: ``` make test_ubuntu make test_centos make test_windows ``` You can always invoke pytest yourself of course if you're on one of those platforms and want to not run VMs with vagrant. # Example TBD