Skip to content
This repository has been archived by the owner on Mar 3, 2023. It is now read-only.

Fix Kedro lint and test errors 🛠️ #8

Merged
merged 5 commits into from
Jan 28, 2021
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1 +1 @@
from .pipeline import create_pipeline
from .pipeline import create_pipeline # NOQA
Original file line number Diff line number Diff line change
@@ -1 +1 @@
from .pipeline import create_pipeline
from .pipeline import create_pipeline # NOQA
2 changes: 1 addition & 1 deletion kedro-exercises/spaceflight/src/tests/test_run.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ def project_context():

class TestProjectContext:
def test_project_name(self, project_context):
assert project_context.project_name == "kedro-tutorial"
assert project_context.project_name == "kedro_tutorial"
Copy link
Contributor

Choose a reason for hiding this comment

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

While we're were, does line 55 still pass?


def test_project_version(self, project_context):
assert project_context.project_version == "0.16.5"