This is an automated email from the ASF dual-hosted git repository.
lynwee pushed a change to branch main
in repository
https://gitbox.apache.org/repos/asf/incubator-devlake-playground.git
from 38cda2a docs(playground): init this repo with empty readme file
add 7507e59 Initial playground
new 4b21cf7 Merge pull request #1 from xebiaquality/main
The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
.gitignore | 3 +
.python-version | 1 +
README.md | 44 +
notebooks/process_analysis.ipynb | 101 ++
notebooks/template.ipynb | 44 +
README.md => playground/__init__.py | 0
playground/db_engine.py | 32 +
.../process_analysis/__init__.py | 0
playground/process_analysis/issue_filter.py | 24 +
.../process_analysis/status_transition_graph.py | 132 ++
.../status_transition_graph_stats_plot.py | 60 +
.../status_transition_graph_vistualizer.py | 162 +++
.../utils/status_transition_data_generator.py | 128 ++
poetry.lock | 1421 ++++++++++++++++++++
pyproject.toml | 25 +
README.md => tests/__init__.py | 0
tests/process_analysis/test_issue_filter.py | 89 ++
.../test_status_transition_graph.py | 221 +++
18 files changed, 2487 insertions(+)
create mode 100644 .gitignore
create mode 100644 .python-version
create mode 100644 notebooks/process_analysis.ipynb
create mode 100644 notebooks/template.ipynb
copy README.md => playground/__init__.py (100%)
create mode 100644 playground/db_engine.py
copy README.md => playground/process_analysis/__init__.py (100%)
create mode 100644 playground/process_analysis/issue_filter.py
create mode 100644 playground/process_analysis/status_transition_graph.py
create mode 100644
playground/process_analysis/status_transition_graph_stats_plot.py
create mode 100644
playground/process_analysis/status_transition_graph_vistualizer.py
create mode 100644
playground/process_analysis/utils/status_transition_data_generator.py
create mode 100644 poetry.lock
create mode 100644 pyproject.toml
copy README.md => tests/__init__.py (100%)
create mode 100644 tests/process_analysis/test_issue_filter.py
create mode 100644 tests/process_analysis/test_status_transition_graph.py