Skip to content

Commit

Permalink
Fix linting on autmated test page (kedro-org#1906)
Browse files Browse the repository at this point in the history
Signed-off-by: Merel Theisen <merel.theisen@quantumblack.com>
Signed-off-by: carlaprv <carlaprv@hotmail.com>
  • Loading branch information
merelcht authored and carlaprv committed Oct 6, 2022
1 parent 9105c72 commit 8abfc33
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/source/development/automated_testing.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Software testing is the process of checking that the code you have written fulfi

As a project grows larger, new code will increasingly rely on existing code. As these interdependencies grow, making changes in one part of the code base can unexpectedly break the intended functionality in another part.

The major disadvantage of manual testing is that it is time-consuming. Manual tests are usually run once, directly after new functionality has been added. It is impractical to repeat manual tests for the entire code base each time a change is made, which means this strategy often misses breaking changes.
The major disadvantage of manual testing is that it is time-consuming. Manual tests are usually run once, directly after new functionality has been added. It is impractical to repeat manual tests for the entire code base each time a change is made, which means this strategy often misses breaking changes.

The solution to this problem is automated testing. Automated testing allows many tests across the whole code base to be run in seconds, every time a new feature is added or an old one is changed. In this way, breaking changes can be discovered during development rather than in production.

Expand Down Expand Up @@ -48,7 +48,7 @@ src
│ │ ...
│ │ nodes.py
│ │ ...
└───tests
│ └───pipelines
│ └───dataprocessing
Expand Down

0 comments on commit 8abfc33

Please sign in to comment.