This is an automated email from the ASF dual-hosted git repository.
Gerrrr pushed a change to branch cli-defaults
in repository https://gitbox.apache.org/repos/asf/otava-playground.git
discard 253acf4 Make defaults consistent with the CLI
add cea07c3 Add Dataset mode for comparing algorithms on real series
add 65182fc Merge pull request #4 from apache/custom-datasets
add f5fb8d4 Draw change-point lines for each algorithm at the same index
add 1823eeb Merge pull request #5 from apache/draw-line-per-algorithm
add 440ec74 Make defaults consistent with the CLI
This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version. This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:
* -- * -- B -- O -- O -- O (253acf4)
\
N -- N -- N refs/heads/cli-defaults (440ec74)
You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.
Any revisions marked "omit" are not gone; other references still
refer to them. Any revisions marked "discard" are gone forever.
No new revisions were added by this update.
Summary of changes:
README.md | 10 +
docs/index.md | 7 +
docs/visualizer.md | 69 ++++
pyproject.toml | 1 +
src/otava_test_data/datasets/__init__.py | 37 ++
src/otava_test_data/datasets/tigerbeetle.py | 75 ++++
src/otava_test_data/tests/test_compare_api.py | 161 ++++++++
src/otava_test_data/tests/test_datasets.py | 53 +++
src/otava_test_data/web/main.py | 232 ++++++++++--
src/otava_test_data/web/static/css/style.css | 172 +++++++++
src/otava_test_data/web/static/js/app.js | 510 +++++++++++++++++++++++---
src/otava_test_data/web/templates/index.html | 94 ++++-
12 files changed, 1319 insertions(+), 102 deletions(-)
create mode 100644 src/otava_test_data/datasets/__init__.py
create mode 100644 src/otava_test_data/datasets/tigerbeetle.py
create mode 100644 src/otava_test_data/tests/test_compare_api.py
create mode 100644 src/otava_test_data/tests/test_datasets.py