Skip to content
Snippets Groups Projects
Commit 6c8d264f authored by Charlotte Hausman's avatar Charlotte Hausman
Browse files

metrics bug fixes

parent c5ee2e24
No related branches found
Tags end-of-sprint-37
1 merge request!963metrics bug fixes
Pipeline #5442 passed
Pipeline: workspaces

#5445

    Pipeline: workspaces

    #5444

      ......@@ -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,
      ......
      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)
      ......
      0% Loading or .
      You are about to add 0 people to the discussion. Proceed with caution.
      Finish editing this message first!
      Please register or to comment