Skip to content

Commit

Permalink
Merge pull request #37 from fabianhe/dev
Browse files Browse the repository at this point in the history
Remove metric
  • Loading branch information
fabianhe authored Jan 29, 2022
2 parents c33db15 + d6775a7 commit f973dd8
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 81 deletions.
4 changes: 2 additions & 2 deletions DOCS.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,13 @@ Either provide the commit ids to analyze on stdin or as a file argument.
**Usage**:

```console
$ pyrepositoryminer analyze [OPTIONS] REPOSITORY [METRICS]:[blobcount|cacherate|complexity|diffpylinecount|difftokei|halstead|linecount|linelength|loc|maintainability|nesting|pylinecount|raw|seerene|tokei|touchedlines]...
$ pyrepositoryminer analyze [OPTIONS] REPOSITORY [METRICS]:[blobcount|cacherate|complexity|diffpylinecount|difftokei|halstead|linecount|linelength|loc|maintainability|nesting|pylinecount|raw|tokei|touchedlines]...
```

**Arguments**:

* `REPOSITORY`: The path to the bare repository. [required]
* `[METRICS]:[blobcount|cacherate|complexity|diffpylinecount|difftokei|halstead|linecount|linelength|loc|maintainability|nesting|pylinecount|raw|seerene|tokei|touchedlines]...`
* `[METRICS]:[blobcount|cacherate|complexity|diffpylinecount|difftokei|halstead|linecount|linelength|loc|maintainability|nesting|pylinecount|raw|tokei|touchedlines]...`

**Options**:

Expand Down
2 changes: 0 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,6 @@ RUN pip install poetry && \
COPY ./pyproject.toml ./poetry.lock README.md /app/
RUN poetry install --no-root --no-dev --no-interaction --no-ansi
COPY ./pyrepositoryminer /app/pyrepositoryminer
COPY ./executables /app/executables
ENV EXECUTABLES=/app/executables
ENV PYTHONPATH=/app
RUN pip install .

Expand Down
3 changes: 1 addition & 2 deletions pyrepositoryminer/metrics/diffdir/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
from pyrepositoryminer.metrics.diffdir.difftokei import DiffTokei
from pyrepositoryminer.metrics.diffdir.seerene import Seerene

__all__ = ("DiffTokei", "Seerene")
__all__ = ("DiffTokei",)
75 changes: 0 additions & 75 deletions pyrepositoryminer/metrics/diffdir/seerene.py

This file was deleted.

0 comments on commit f973dd8

Please sign in to comment.