Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
H
hivemind
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
hive
hivemind
Commits
172d9b2d
Commit
172d9b2d
authored
4 years ago
by
Dariusz Kędzierski
Browse files
Options
Downloads
Patches
Plain Diff
Benchmarks script moved to CI dir
parent
fe1d7c4d
No related branches found
No related tags found
2 merge requests
!456
Release candidate v1 24
,
!246
API tests execution time reports
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
.gitlab-ci.yaml
+10
-10
10 additions, 10 deletions
.gitlab-ci.yaml
scripts/ci/start-api-benchmark.sh
+27
-0
27 additions, 0 deletions
scripts/ci/start-api-benchmark.sh
with
37 additions
and
10 deletions
.gitlab-ci.yaml
+
10
−
10
View file @
172d9b2d
...
@@ -344,16 +344,16 @@ api_smoketest_benchmark:
...
@@ -344,16 +344,16 @@ api_smoketest_benchmark:
stage
:
benchmark-tests
stage
:
benchmark-tests
extends
:
.benchmark-tests-common
extends
:
.benchmark-tests-common
script
:
script
:
-
scripts/ci
_
start
_
api
_
benchmark.sh localhost $HIVEMIND_HTTP_PORT tests/tests_api/hivemind/tavern/bridge_api_patterns/ api_benchmark_bridge
-
scripts/ci
/
start
-
api
-
benchmark.sh localhost $HIVEMIND_HTTP_PORT tests/tests_api/hivemind/tavern/bridge_api_patterns/ api_benchmark_bridge
-
scripts/ci
_
start
_
api
_
benchmark.sh localhost $HIVEMIND_HTTP_PORT tests/tests_api/hivemind/tavern/bridge_api_negative/ api_benchmark_bridge_negative
-
scripts/ci
/
start
-
api
-
benchmark.sh localhost $HIVEMIND_HTTP_PORT tests/tests_api/hivemind/tavern/bridge_api_negative/ api_benchmark_bridge_negative
-
scripts/ci
_
start
_
api
_
benchmark.sh localhost $HIVEMIND_HTTP_PORT tests/tests_api/hivemind/tavern/condenser_api_patterns/ api_benchmark_condenser
-
scripts/ci
/
start
-
api
-
benchmark.sh localhost $HIVEMIND_HTTP_PORT tests/tests_api/hivemind/tavern/condenser_api_patterns/ api_benchmark_condenser
-
scripts/ci
_
start
_
api
_
benchmark.sh localhost $HIVEMIND_HTTP_PORT tests/tests_api/hivemind/tavern/condenser_api_negative/ api_benchmark_condenser_negative
-
scripts/ci
/
start
-
api
-
benchmark.sh localhost $HIVEMIND_HTTP_PORT tests/tests_api/hivemind/tavern/condenser_api_negative/ api_benchmark_condenser_negative
-
scripts/ci
_
start
_
api
_
benchmark.sh localhost $HIVEMIND_HTTP_PORT tests/tests_api/hivemind/tavern/database_api_patterns/ api_benchmark_database
-
scripts/ci
/
start
-
api
-
benchmark.sh localhost $HIVEMIND_HTTP_PORT tests/tests_api/hivemind/tavern/database_api_patterns/ api_benchmark_database
-
scripts/ci
_
start
_
api
_
benchmark.sh localhost $HIVEMIND_HTTP_PORT tests/tests_api/hivemind/tavern/database_api_negative/ api_benchmark_database_negative
-
scripts/ci
/
start
-
api
-
benchmark.sh localhost $HIVEMIND_HTTP_PORT tests/tests_api/hivemind/tavern/database_api_negative/ api_benchmark_database_negative
-
scripts/ci
_
start
_
api
_
benchmark.sh localhost $HIVEMIND_HTTP_PORT tests/tests_api/hivemind/tavern/follow_api_patterns/ api_benchmark_follow
-
scripts/ci
/
start
-
api
-
benchmark.sh localhost $HIVEMIND_HTTP_PORT tests/tests_api/hivemind/tavern/follow_api_patterns/ api_benchmark_follow
-
scripts/ci
_
start
_
api
_
benchmark.sh localhost $HIVEMIND_HTTP_PORT tests/tests_api/hivemind/tavern/follow_api_negative/ api_benchmark_follow_negative
-
scripts/ci
/
start
-
api
-
benchmark.sh localhost $HIVEMIND_HTTP_PORT tests/tests_api/hivemind/tavern/follow_api_negative/ api_benchmark_follow_negative
-
scripts/ci
_
start
_
api
_
benchmark.sh localhost $HIVEMIND_HTTP_PORT tests/tests_api/hivemind/tavern/tags_api_patterns/ api_benchmark_tags
-
scripts/ci
/
start
-
api
-
benchmark.sh localhost $HIVEMIND_HTTP_PORT tests/tests_api/hivemind/tavern/tags_api_patterns/ api_benchmark_tags
-
scripts/ci
_
start
_
api
_
benchmark.sh localhost $HIVEMIND_HTTP_PORT tests/tests_api/hivemind/tavern/tags_api_negative/ api_benchmark_tags_negative
-
scripts/ci
/
start
-
api
-
benchmark.sh localhost $HIVEMIND_HTTP_PORT tests/tests_api/hivemind/tavern/tags_api_negative/ api_benchmark_tags_negative
artifacts
:
artifacts
:
when
:
always
when
:
always
...
...
This diff is collapsed.
Click to expand it.
scripts/ci/start-api-benchmark.sh
0 → 100755
+
27
−
0
View file @
172d9b2d
#!/bin/bash
# $1 - server address
# $2 - server port
# $3 - path to test directory
# $4 - name of the benchmark script file
set
-e
echo
"========================= BENCHMARKS ================================="
echo
"Server address:
$1
"
echo
"Server port:
$2
"
echo
"Test directory to be processed:
$3
"
echo
"Benchmark test file name:
$4
.py"
BASE_DIR
=
$(
pwd
)
echo
"Script base dir is:
$BASE_DIR
"
pip
install
tox
pip
install
prettytable
echo
"Creating benchmark test file as:
$4
.py"
$BASE_DIR
/tests/tests_api/hivemind/benchmarks/benchmark_generator.py
$3
"
$4
.py"
"http://
$1
:
$2
"
echo
"Running benchmark tests on http://
$1
:
$2
"
tox
-e
benchmark
--
--benchmark-json
=
"
$4
.json"
"
$4
.py"
echo
"Creating html report from
$4
.json"
$BASE_DIR
/scripts/json_report_parser.py
$3
"
$4
.json"
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment