Skip to content

Commit

Permalink
cleanup pr <glob path>
Browse files Browse the repository at this point in the history
  • Loading branch information
casperdcl committed Oct 7, 2022
1 parent 26e815a commit ec4204e
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
14 changes: 7 additions & 7 deletions bin/cml.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ describe('command-line interface tests', () => {
"cml.js <command>
Commands:
cml.js check Manage CI checks
cml.js comment Manage comments
cml.js pr <glob path...> Manage pull requests
cml.js runner Manage self-hosted (cloud & on-premise) CI runners
cml.js tensorboard Manage tensorboard.dev connections
cml.js workflow Manage CI workflows
cml.js ci Prepare Git repository for CML operations
cml.js check Manage CI checks
cml.js comment Manage comments
cml.js pr Manage pull requests
cml.js runner Manage self-hosted (cloud & on-premise) CI runners
cml.js tensorboard Manage tensorboard.dev connections
cml.js workflow Manage CI workflows
cml.js ci Prepare Git repository for CML operations
Global Options:
--log Logging verbosity
Expand Down
2 changes: 1 addition & 1 deletion bin/cml/pr.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
const { options, handler } = require('./pr/create');

exports.command = 'pr <glob path...>';
exports.command = 'pr';
exports.description = 'Manage pull requests';
exports.handler = handler;
exports.builder = (yargs) =>
Expand Down
2 changes: 1 addition & 1 deletion bin/cml/pr/create.e2e.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ describe('CML e2e', () => {
const output = await exec(`echo none | node ./bin/cml.js pr --help`);

expect(output).toMatchInlineSnapshot(`
"cml.js pr <glob path...>
"cml.js pr
Manage pull requests
Expand Down

2 comments on commit ec4204e

@github-actions
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Test Comment

CML watermark

@github-actions
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Test Comment

CML watermark

Please sign in to comment.