https://github.com/stackhpc/stackhpc-cloud-tests
Automated testing for StackHPC OpenStack
https://github.com/stackhpc/stackhpc-cloud-tests
Last synced: 14 days ago
JSON representation
Automated testing for StackHPC OpenStack
- Host: GitHub
- URL: https://github.com/stackhpc/stackhpc-cloud-tests
- Owner: stackhpc
- License: apache-2.0
- Created: 2024-05-13T15:49:37.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2025-11-10T15:02:26.000Z (7 months ago)
- Last Synced: 2025-11-10T17:09:16.849Z (7 months ago)
- Language: Python
- Size: 55.7 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# StackHPC Cloud Tests
Automated testing for StackHPC OpenStack Clouds.
Provides test coverage of various aspects of OpenStack and related services, including:
* OpenSearch
* Prometheus
Tests are written using [pytest](https://docs.pytest.org/).
## Installation
Clone this repository.
Create a virtual environment.
```sh
python3 -m venv venv
```
Install stackhpc-cloud-tests and its dependencies.
```sh
venv/bin/pip install -r /requirements.txt
```
## Usage
Run all tests provided.
```sh
py.test --pyargs stackhpc_cloud_tests
```
Or run tests from a specific submodule.
```sh
py.test --pyargs stackhpc_cloud_tests.test_prometheus
```