Skip to content
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
16 changes: 16 additions & 0 deletions .flake8
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
[flake8]
max-line-length = 120
max-complexity = 10
select = C,E,F,W,B,B950
ignore = E203,E501,W503,E722,B001,C901
exclude =
.git,
test_*,
__pycache__,
*.egg-info,
.nox,
.pytest_cache,
.mypy_cache,
dist
dist
dist
9 changes: 8 additions & 1 deletion .github/release-drafter-config.yml
Original file line number Diff line number Diff line change
@@ -1,24 +1,31 @@
name-template: 'Version $NEXT_PATCH_VERSION'
tag-template: 'v$NEXT_PATCH_VERSION'
categories:

- title: 'Spec changes: topologies'
labels:
- 'spec-topologies'

- title: 'Spec changes: test-suites'
labels:
- 'spec-test-suites'

- title: 'Spec changes: builders'
labels:
- 'spec-builders'

- title: 'Tooling changes: API'
labels:
- 'tool-api'

- title: 'Tooling changes: Artifacts builder'
labels:
- 'tool-builder'

- title: 'Tooling changes: Self contained coordinator'
labels:
- 'tool-self-coordinator'

- title: 'Tooling changes: Large scale coordinator'
labels:
- 'tool-large-coordinator'
Expand All @@ -30,4 +37,4 @@ exclude-labels:
template: |
## Redis performance and observability spec change

$CHANGES
$CHANGES
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -221,4 +221,4 @@ fabric.properties
.idea/caches/build_file_checksums.ser

# Json result files
*.json
*.json
8 changes: 7 additions & 1 deletion Readme.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@

[![codecov](https://codecov.io/gh/filipecosta90/redis-benchmarks-specification/branch/master/graph/badge.svg)](https://codecov.io/filipecosta90/redis-benchmarks-specification)
![Actions](https://github.com/filipecosta90/redis-benchmarks-specification/workflows/Run%20Tests/badge.svg?branch=master)
![Actions](https://badge.fury.io/py/redis-benchmarks-specification.svg)


## Benchmark specifications goal

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

Currently, the following members actively support this project:

- [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.
- [Redis](https://redis.com/): providing steady-stable infrastructure platform to run the benchmark suite. Supporting the active development of this project within the company.


## Scope
Expand Down
Loading