Skip to content

Rename to stackhpc-cloud-tests #7

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jan 15, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -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:

Expand All @@ -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 <path/to/repo> -r <path/to/repo>/requirements.txt
Expand All @@ -30,11 +30,11 @@ venv/bin/pip install <path/to/repo> -r <path/to/repo>/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
```
10 changes: 5 additions & 5 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -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 = [email protected]
url = https://github.com/stackhpc/stackhpc-openstack-tests
url = https://github.com/stackhpc/stackhpc-cloud-tests
python-requires = >=3.6
classifier =
Environment :: OpenStack
Expand All @@ -26,7 +26,7 @@ classifier =

[files]
packages =
stackhpc_openstack_tests
stackhpc_cloud_tests

[options]
install_requires =
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
import os
import pytest

from stackhpc_openstack_tests import utils
from stackhpc_cloud_tests import utils


@pytest.fixture
Expand Down
File renamed without changes.