Skip to content

Commit

Permalink
version 0.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ialbert committed Apr 2, 2024
1 parent 1fede0e commit 463c6cf
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 12 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ web:

# Performs a python-only test.
test:
pytest
hatch run test

# A full test with file generation.
testall: test
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,8 @@ dependencies = [
]

[tool.hatch.envs.default.scripts]
test = "pytest {args:tests}"
test-cov = "coverage run -m pytest {args:tests}"
test = "pytest {args:test}"
test-cov = "coverage run -m pytest {args:test}"
cov-report = [
"- coverage combine",
"coverage report",
Expand Down
14 changes: 5 additions & 9 deletions src/genescape/main.py
Original file line number Diff line number Diff line change
@@ -1,17 +1,13 @@
import os
import sys
from pathlib import Path

import click

from pathlib import Path
from genescape import __version__
from genescape import resources, utils


@click.group()
HELP = f"Gene function visualization (v{__version__})."

@click.group(help=HELP)
def cli():
"""
Genomic function visualization.
"""
pass


Expand Down

0 comments on commit 463c6cf

Please sign in to comment.