From bdfccde064bd0eb900692d4ef0d8e16c608a46f0 Mon Sep 17 00:00:00 2001 From: Alex-Welsh Date: Tue, 14 Jan 2025 16:31:13 +0000 Subject: [PATCH] Rename to stackhpc-cloud-tests --- README.md | 10 +++++----- setup.cfg | 10 +++++----- .../__init__.py | 0 .../test_opensearch.py | 2 +- .../test_prometheus.py | 0 .../utils.py | 0 6 files changed, 11 insertions(+), 11 deletions(-) rename {stackhpc_openstack_tests => stackhpc_cloud_tests}/__init__.py (100%) rename {stackhpc_openstack_tests => stackhpc_cloud_tests}/test_opensearch.py (97%) rename {stackhpc_openstack_tests => stackhpc_cloud_tests}/test_prometheus.py (100%) rename {stackhpc_openstack_tests => stackhpc_cloud_tests}/utils.py (100%) diff --git a/README.md b/README.md index f5482ad..041922d 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ -# StackHPC OpenStack Tests +# StackHPC Cloud Tests -Automated testing for StackHPC OpenStack. +Automated testing for StackHPC OpenStack Clouds. Provides test coverage of various aspects of OpenStack and related services, including: @@ -19,7 +19,7 @@ Create a virtual environment. python3 -m venv venv ``` -Install stackhpc-openstack-tests and its dependencies. +Install stackhpc-cloud-tests and its dependencies. ```sh venv/bin/pip install -r /requirements.txt @@ -30,11 +30,11 @@ venv/bin/pip install -r /requirements.txt Run all tests provided. ```sh -py.test --pyargs stackhpc_openstack_tests +py.test --pyargs stackhpc_cloud_tests ``` Or run tests from a specific submodule. ```sh -py.test --pyargs stackhpc_openstack_tests.test_prometheus +py.test --pyargs stackhpc_cloud_tests.test_prometheus ``` diff --git a/setup.cfg b/setup.cfg index 7147947..f556bad 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,11 +1,11 @@ [metadata] -name = stackhpc-openstack-tests -version = 0.1.0 -summary = Automated testing for StackHPC OpenStack +name = stackhpc-cloud-tests +version = 0.2.0 +summary = Automated testing for StackHPC OpenStack Clouds description-file = README.md author = Mark Goddard author-email = mark@stackhpc.com -url = https://github.com/stackhpc/stackhpc-openstack-tests +url = https://github.com/stackhpc/stackhpc-cloud-tests python-requires = >=3.6 classifier = Environment :: OpenStack @@ -26,7 +26,7 @@ classifier = [files] packages = - stackhpc_openstack_tests + stackhpc_cloud_tests [options] install_requires = diff --git a/stackhpc_openstack_tests/__init__.py b/stackhpc_cloud_tests/__init__.py similarity index 100% rename from stackhpc_openstack_tests/__init__.py rename to stackhpc_cloud_tests/__init__.py diff --git a/stackhpc_openstack_tests/test_opensearch.py b/stackhpc_cloud_tests/test_opensearch.py similarity index 97% rename from stackhpc_openstack_tests/test_opensearch.py rename to stackhpc_cloud_tests/test_opensearch.py index b750f88..d57136a 100644 --- a/stackhpc_openstack_tests/test_opensearch.py +++ b/stackhpc_cloud_tests/test_opensearch.py @@ -20,7 +20,7 @@ import os import pytest -from stackhpc_openstack_tests import utils +from stackhpc_cloud_tests import utils @pytest.fixture diff --git a/stackhpc_openstack_tests/test_prometheus.py b/stackhpc_cloud_tests/test_prometheus.py similarity index 100% rename from stackhpc_openstack_tests/test_prometheus.py rename to stackhpc_cloud_tests/test_prometheus.py diff --git a/stackhpc_openstack_tests/utils.py b/stackhpc_cloud_tests/utils.py similarity index 100% rename from stackhpc_openstack_tests/utils.py rename to stackhpc_cloud_tests/utils.py