-
Notifications
You must be signed in to change notification settings - Fork 906
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Merel Theisen <merel.theisen@quantumblack.com>
- Loading branch information
Showing
6 changed files
with
42 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
Feature: Micro-package target in new project | ||
|
||
Background: | ||
Given I have prepared a config file | ||
And I have run a non-interactive kedro new with starter "default" | ||
And I have installed the project dependencies | ||
|
||
@fresh_venv | ||
Scenario: Package a micro-package | ||
When I execute the kedro command "micropkg package pipelines.data_science" | ||
Then I should get a successful exit code | ||
And I should get a message including "'project_dummy.pipelines.data_science' packaged!" | ||
|
||
@fresh_venv | ||
Scenario: Package a micro-package from manifest | ||
Given I have micro-packaging settings in pyproject.toml | ||
When I execute the kedro command "micropkg package --all" | ||
Then I should get a successful exit code | ||
And I should get a message including "Packaged 'pipelines.data_science' micro-package!" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters