-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from DSACMS/dev
Prepare Metrics Backend for Becoming an External Module and Add Tests
- Loading branch information
Showing
16 changed files
with
959 additions
and
45 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
## Issue Report | ||
|
||
module-name: One line summary of the issue (less than 72 characters) | ||
|
||
### Expected behavior | ||
|
||
As concisely as possible, describe the expected behavior. | ||
|
||
### Actual behavior | ||
|
||
As concisely as possible, describe the observed behavior. | ||
|
||
### Steps to reproduce the behavior | ||
|
||
List all relevant steps to reproduce the observed behavior. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
<!-- | ||
Thank you for sending the PR! We appreciate you spending the time to work on | ||
these changes. | ||
Help us understand your motivation by explaining why you decided to make this change. | ||
Happy contributing! | ||
- Comments should be formatted to a width no greater than 80 columns. | ||
- Files should be exempt of trailing spaces. | ||
- We adhere to a specific format for commit messages. Please write your commit | ||
messages along these guidelines. Please keep the line width no greater than 80 | ||
columns (You can use `fmt -n -p -w 80` to accomplish this). | ||
--> | ||
|
||
## module-name: One line description of your change (less than 72 characters) | ||
|
||
## Problem | ||
|
||
Explain the context and why you're making that change. What is the problem | ||
you're trying to solve? In some cases there is not a problem and this can be | ||
thought of being the motivation for your change. | ||
|
||
## Solution | ||
|
||
Describe the modifications you've done. | ||
|
||
## Result | ||
|
||
What will change as a result of your pull request? Note that sometimes this | ||
section is unnecessary because it is self-explanatory based on the solution. | ||
|
||
Some important notes regarding the summary line: | ||
|
||
* Describe what was done; not the result | ||
* Use the active voice | ||
* Use the present tense | ||
* Capitalize properly | ||
* Do not end in a period — this is a title/subject | ||
* Prefix the subject with its scope | ||
|
||
## Test Plan | ||
|
||
(Write your test plan here. If you changed any code, please provide us with | ||
clear instructions on how you verified your changes work.) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
.venv | ||
.pytest_cache | ||
__pycache__/ | ||
tests/__pycache__ | ||
metrics_dash_backend_tools/__pycache__ | ||
dist/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
from .constants import * | ||
from .fetch_public_metrics import * | ||
from .graphs import * | ||
from .metrics_data_structures import * | ||
from .metrics_definitions import * | ||
from .oss_metric_entities import * | ||
from .reports import * |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.