Skip to content

Commit

Permalink
Merge pull request #60 from HERA-Team/single_script
Browse files Browse the repository at this point in the history
Make single command line script
  • Loading branch information
plaplant authored Sep 19, 2019
2 parents b590239 + c6431bc commit f00c124
Show file tree
Hide file tree
Showing 18 changed files with 1,062 additions and 959 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# Version *next* (not yet released)

- Move scripts to `cli.py` module and replace with single command.
- Reorganize repo structure.
- Add tests and CI support.
- Support automatic ingestion of uvh5 files.
Expand Down
2 changes: 1 addition & 1 deletion ci/install-circle.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ conda activate ${ENV_NAME}
conda list -n ${ENV_NAME}

# install other dependencies with pip
pip install pytest-datafiles pytest-cov
pip install pytest-datafiles pytest-cov pytest-console-scripts

# set up librarian database
alembic upgrade head
Expand Down
3 changes: 3 additions & 0 deletions hera_librarian/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@
''').split()


__version__ = "0.1.7a0"


class NoSuchConnectionError (Exception):
def __init__(self, conn_name):
super(NoSuchConnectionError, self).__init__("no such connection " + repr(conn_name))
Expand Down
Loading

0 comments on commit f00c124

Please sign in to comment.