Skip to content

Commit 85cc754

Browse files
committed
update name
1 parent ead2797 commit 85cc754

12 files changed

+20
-20
lines changed

CHANGELOG.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
1010

1111
### Added
1212

13-
- Added mongodb docker files for local testing [#6](https://github.com/Healy-Hyperspatial/stac-api-load-balancing/pull/6)
13+
- Added mongodb docker files for local testing [#6](https://github.com/Healy-Hyperspatial/stac-api-load-testing/pull/6)
1414

1515
### Changed
1616

@@ -22,7 +22,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
2222

2323
### Added
2424

25-
- Taurus config options in cli. [#5](https://github.com/Healy-Hyperspatial/stac-api-load-balancing/pull/5)
25+
- Taurus config options in cli. [#5](https://github.com/Healy-Hyperspatial/stac-api-load-testing/pull/5)
2626

2727
### Changed
2828

@@ -33,13 +33,13 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
3333

3434
### Added
3535

36-
- Added opensearch docker files for local testing [#3](https://github.com/Healy-Hyperspatial/stac-api-load-balancing/pull/3)
36+
- Added opensearch docker files for local testing [#3](https://github.com/Healy-Hyperspatial/stac-api-load-testing/pull/3)
3737

3838
### Changed
3939

4040
### Fixed
4141

42-
- Fixed sample data location in package files [#4](https://github.com/Healy-Hyperspatial/stac-api-load-balancing/pull/4)
42+
- Fixed sample data location in package files [#4](https://github.com/Healy-Hyperspatial/stac-api-load-testing/pull/4)
4343

4444

4545
## [v0.1.0]

Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@ WORKDIR /code
33
COPY . /code/
44

55
RUN pip install . && \
6-
stac-api-load-balancing --help
6+
stac-api-load-testing --help
77

8-
ENTRYPOINT ["stac-api-load-balancing"]
8+
ENTRYPOINT ["stac-api-load-testing"]

docker-compose.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
version: '3.8'
22
services:
3-
# stac-api-load-balancing:
4-
# container_name: stac-api-load-balancing
5-
# image: stac-api-load-balancing
3+
# stac-api-load-testing:
4+
# container_name: stac-api-load-testing
5+
# image: stac-api-load-testing
66
# build:
77
# context: .
88
# dockerfile: Dockerfile
99
# command:
10-
# bash -c "stac-api-load-balancing --help"
10+
# bash -c "stac-api-load-testing --help"
1111
# volumes:
1212
# - ./log-files:/app
1313

setup.py

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
"""stac-api-load-balancing setup.py."""
1+
"""stac-api-load-testing setup.py."""
22
from setuptools import setup
33

44
__version__ = "0.2.0"
@@ -7,10 +7,10 @@
77
long_description = fh.read()
88

99
setup(
10-
name="stac_api_load_balancing",
10+
name="stac_api_load_testing",
1111
version=__version__,
12-
description="Load balancing for stac compliant apis",
13-
url="https://github.com/Healy-Hyperspatial/stac-api-load-balancing",
12+
description="Load testing for stac compliant apis",
13+
url="https://github.com/Healy-Hyperspatial/stac-api-load-testing",
1414
include_package_data=True,
1515
install_requires=[
1616
"click>=7.1.2",
@@ -19,9 +19,9 @@
1919
"Cython",
2020
"bzt",
2121
],
22-
packages=["stac_api_load_balancing"],
22+
packages=["stac_api_load_testing"],
2323
entry_points={
24-
"console_scripts": ["stac-api-load-balancing=stac_api_load_balancing.cli:main"]
24+
"console_scripts": ["stac-api-load-testing=stac_api_load_testing.cli:main"]
2525
},
2626
author="Jonathan Healy",
2727
author_email="[email protected]",
File renamed without changes.

stac_api_load_balancing/cli.py stac_api_load_testing/cli.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
"""stac-api-load-balancing cli tool."""
1+
"""stac-api-load-testing cli tool."""
22
import os
33
import re
44
import subprocess
@@ -98,7 +98,7 @@ def main(
9898
iterations: int,
9999
):
100100
"""
101-
Entry point for the stac-api-load-balancing CLI tool.
101+
Entry point for the stac-api-load-testing CLI tool.
102102
103103
This tool facilitates data ingestion, Locust load testing, and Taurus performance testing
104104
against a specified STAC API endpoint.

stac_api_load_balancing/config_files/locustfile.py stac_api_load_testing/config_files/locustfile.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
"""stac-api-load-balancing locustfile.py config."""
1+
"""stac-api-load-testing locustfile.py config."""
22
import json
33
import os
44
import random
@@ -103,7 +103,7 @@ def load_file(self, file) -> dict:
103103
"""
104104
try:
105105
file_path = resource_filename(
106-
"stac_api_load_balancing.data_loader", f"setup_data/{file}"
106+
"stac_api_load_testing.data_loader", f"setup_data/{file}"
107107
)
108108
with open(file_path, "r") as file:
109109
return json.load(file)

0 commit comments

Comments
 (0)