-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Restructure to flask's blueprint scafolding and implement scorecard #11
Conversation
Signed-off-by: kimpaller <[email protected]>
Signed-off-by: kimpaller <[email protected]>
Signed-off-by: kimpaller <[email protected]>
Have a instance running with this code? |
Our current constellation deployment is running these codes. |
Dockerfile
Outdated
@@ -4,6 +4,8 @@ USER root | |||
WORKDIR /app | |||
ADD . /app | |||
RUN pip install -r requirements.txt | |||
RUN cd telemetry_src && python setup.py install; cd .. | |||
RUN git clone -b artifacts-support https://github.com/sdgtt/telemetry.git |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
can we get this branch merged into main before things diverge too much
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
clone "telemetry:master" instead as telemetry:artifacts-support" was already merged to master sdgtt/telemetry#28
app/models/boot_tests.py
Outdated
@@ -56,6 +60,11 @@ def __initialize_fields(self): | |||
"pytest_failures", | |||
"pytest_skipped", | |||
"pytest_tests", | |||
"matlab_errors", | |||
"matlab_errors", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
duplicated key
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Removed duplicate
7b9514b
Signed-off-by: kimpaller <[email protected]>
Signed-off-by: kimpaller <[email protected]>
Signed-off-by: kimpaller <[email protected]>
…cketed agg_field Signed-off-by: kimpaller <[email protected]>
Signed-off-by: kimpaller <[email protected]>
Signed-off-by: analog <[email protected]>
Signed-off-by: analog <[email protected]>
Signed-off-by: analog <[email protected]>
Signed-off-by: analog <[email protected]>
Signed-off-by: analog <[email protected]>
Signed-off-by: analog <[email protected]>
Signed-off-by: analog <[email protected]>
https://flask.palletsprojects.com/en/2.2.x/blueprints/