Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
workspaces
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ssa
workspaces
Commits
6c8d264f
Commit
6c8d264f
authored
2 years ago
by
Charlotte Hausman
Browse files
Options
Downloads
Patches
Plain Diff
metrics bug fixes
parent
c5ee2e24
No related branches found
Branches containing commit
Tags
end-of-sprint-37
Tags containing commit
1 merge request
!963
metrics bug fixes
Pipeline
#5442
passed
2 years ago
Stage: cache-build
Stage: build
Stage: unit-test
Stage: push
Stage: generate-yaml
Stage: trigger
Stage: deploy
Stage: .post
Pipeline: workspaces
#5445
Pipeline: workspaces
#5444
Changes
2
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
apps/cli/executables/pexable/ws_metrics/setup.py
+1
-1
1 addition, 1 deletion
apps/cli/executables/pexable/ws_metrics/setup.py
apps/cli/executables/pexable/ws_metrics/ws_metrics/inquisition.py
+2
-1
2 additions, 1 deletion
.../executables/pexable/ws_metrics/ws_metrics/inquisition.py
with
3 additions
and
2 deletions
apps/cli/executables/pexable/ws_metrics/setup.py
+
1
−
1
View file @
6c8d264f
...
...
@@ -25,7 +25,7 @@ from setuptools import setup, find_packages
VERSION
=
open
(
"
ws_metrics/_version.py
"
).
readlines
()[
-
1
].
split
()[
-
1
].
strip
(
"
\"
'"
)
README
=
Path
(
"
README.md
"
).
read_text
()
requires
=
[
"
psycopg2
"
,
"
pycapo
"
,
"
aenum
"
,
"
pendulum
"
]
requires
=
[
"
psycopg2
"
,
"
pycapo
"
,
"
aenum
"
,
"
pendulum
"
,
"
sqlalchemy
"
]
setup
(
name
=
"
ssa-
"
+
Path
().
absolute
().
name
,
...
...
This diff is collapsed.
Click to expand it.
apps/cli/executables/pexable/ws_metrics/ws_metrics/inquisition.py
+
2
−
1
View file @
6c8d264f
import
argparse
from
pathlib
import
Path
from
pendulum
import
datetime
...
...
@@ -160,7 +161,7 @@ class LifeUniverseEverything:
if
args
.
report
:
if
args
.
path
:
path
=
args
.
path
[
0
]
path
=
Path
(
args
.
path
[
0
]
)
else
:
path
=
None
self
.
dispatch
.
dispatch_file_to_user
(
report
,
path
)
...
...
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