-
Notifications
You must be signed in to change notification settings - Fork 15
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Database interaction commands #4
Conversation
Codecov Report
@@ Coverage Diff @@
## main #4 +/- ##
==========================================
- Coverage 82.03% 81.56% -0.48%
==========================================
Files 80 81 +1
Lines 4437 4496 +59
Branches 534 540 +6
==========================================
+ Hits 3640 3667 +27
- Misses 660 687 +27
- Partials 137 142 +5
Continue to review full report at Codecov.
|
3f365ef
to
3bdda36
Compare
dd01c86
to
5a6ea0b
Compare
@@ -13,7 +13,7 @@ | |||
|
|||
"""This is the orchestrator workflow engine.""" | |||
|
|||
__version__ = "0.0.2rc2" | |||
__version__ = "0.0.2rc11" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
we might start using a scheme here ;)
@@ -37,5 +37,6 @@ | |||
NODE_SUBSCRIPTION_ID = "node_subscription_id" | |||
PORT_MODE = "port_mode" | |||
INTERNETPINNEN_PREFIX_SUBSCRIPTION_ID = "internetpinnen_prefix_subscription_id" | |||
PEER_GROUP_SUBSCRIPTION_ID = "peer_group_subscription_id" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do we need these constants in a Generic release?
@@ -29,6 +29,7 @@ | |||
IP_PREFIX_SUBSCRIPTION_ID, | |||
NODE_SUBSCRIPTION_ID, | |||
PARENT_IP_PREFIX_SUBSCRIPTION_ID, | |||
PEER_GROUP_SUBSCRIPTION_ID, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We seem to leak some SURF specific constants. Maybe good to add least add a todo (in the code) to split/clean it?
This PR exposes cli commands to wrap alembic commands and add it to the core cli commands.