Skip to content

Commit 319be60

Browse files
[DRAFT] self-contained-coordinator 1st working draft (#4)
* [DRAFT] self-contained-coordinator 1st working draft * [fix] Fixed missing dev dependencies * [fix] Fixed linting errors
1 parent acf2465 commit 319be60

17 files changed

+657
-174
lines changed

.flake8

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
[flake8]
2+
max-line-length = 120
3+
max-complexity = 10
4+
select = C,E,F,W,B,B950
5+
ignore = E203,E501,W503,E722,B001,C901
6+
exclude =
7+
.git,
8+
test_*,
9+
__pycache__,
10+
*.egg-info,
11+
.nox,
12+
.pytest_cache,
13+
.mypy_cache,
14+
dist
15+
dist
16+
dist

.github/release-drafter-config.yml

+8-1
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,31 @@
11
name-template: 'Version $NEXT_PATCH_VERSION'
22
tag-template: 'v$NEXT_PATCH_VERSION'
33
categories:
4+
45
- title: 'Spec changes: topologies'
56
labels:
67
- 'spec-topologies'
8+
79
- title: 'Spec changes: test-suites'
810
labels:
911
- 'spec-test-suites'
12+
1013
- title: 'Spec changes: builders'
1114
labels:
1215
- 'spec-builders'
16+
1317
- title: 'Tooling changes: API'
1418
labels:
1519
- 'tool-api'
20+
1621
- title: 'Tooling changes: Artifacts builder'
1722
labels:
1823
- 'tool-builder'
24+
1925
- title: 'Tooling changes: Self contained coordinator'
2026
labels:
2127
- 'tool-self-coordinator'
28+
2229
- title: 'Tooling changes: Large scale coordinator'
2330
labels:
2431
- 'tool-large-coordinator'
@@ -30,4 +37,4 @@ exclude-labels:
3037
template: |
3138
## Redis performance and observability spec change
3239
33-
$CHANGES
40+
$CHANGES

.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -221,4 +221,4 @@ fabric.properties
221221
.idea/caches/build_file_checksums.ser
222222

223223
# Json result files
224-
*.json
224+
*.json

Readme.md

+7-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
2+
[![codecov](https://codecov.io/gh/filipecosta90/redis-benchmarks-specification/branch/master/graph/badge.svg)](https://codecov.io/filipecosta90/redis-benchmarks-specification)
3+
![Actions](https://github.com/filipecosta90/redis-benchmarks-specification/workflows/Run%20Tests/badge.svg?branch=master)
4+
![Actions](https://badge.fury.io/py/redis-benchmarks-specification.svg)
5+
6+
17
## Benchmark specifications goal
28

39
The Redis benchmarks specification describes the cross-language/tools requirements and expectations to foster performance and observability standards around redis related technologies.
@@ -6,7 +12,7 @@ Members from both industry and academia, including organizations and individuals
612

713
Currently, the following members actively support this project:
814

9-
- [Redis Labs](https://redislabs.com/): providing steady-stable infrastructure platform to run the benchmark suite. Supporting the active development of this project within the company.
15+
- [Redis](https://redis.com/): providing steady-stable infrastructure platform to run the benchmark suite. Supporting the active development of this project within the company.
1016

1117

1218
## Scope

0 commit comments

Comments
 (0)