Skip to content

Commit

Permalink
Release readme and removed double cli command test-data-source
Browse files Browse the repository at this point in the history
  • Loading branch information
tombaeyens committed Feb 13, 2025
1 parent 7c2c95e commit cfd4fb9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 8 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ The above command will block the command line so that you can stop the postgres

### Creating a new release

TODO. Any volunteer?
Every time a commit is done to `main` on the `v4` branch, a release is triggered automatically to pypi.dev.sodadata.io

### Running the test suite in PyCharm

Expand Down
8 changes: 1 addition & 7 deletions soda-core/src/soda_core/cli/soda.py
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ def main():
"must already exist on Soda Cloud."
)

publish_parser = sub_parsers.add_parser('publish', help='Publish a contract')
publish_parser = sub_parsers.add_parser('publish', help='Publish a contract (not yet implemented)')
publish_parser.add_argument(
"-c", "--contract",
type=str,
Expand All @@ -229,12 +229,6 @@ def main():
help="Type of the data source. Eg postgres"
)

test_parser = sub_parsers.add_parser('test-data-source', help='Test a data source connection')
test_parser.add_argument(
"-ds", "--data-source",
type=str,
help="The name of a configured data source to test."
)
test_parser = sub_parsers.add_parser('test-data-source', help='Test a data source connection')
test_parser.add_argument(
"-ds", "--data-source",
Expand Down

0 comments on commit cfd4fb9

Please sign in to comment.