You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
*[Use pytest as test framework](#use-pytest-as-test-framework)
5
+
*[Unit test execution](#unit-test-execution)
8
6
*[Unit test coverage](#unit-test-coverage)
7
+
*[Use pytest as test framework](#use-pytest-as-test-framework)
9
8
10
-
## Use pytest as test framework
11
-
PyTest is a testing framework in Python, with simple and easy syntax targeting unit tests and simple functional tests. PyTest can run tests in parallel and automatically detects tests in the test folder. PyTest serves the current goal of testing Codeflare pipelines well.
9
+
## Unit test execution
10
+
Run pytest to execute all test code in the folder
11
+
```
12
+
pytest
13
+
```
12
14
13
15
## Unit test coverage
14
16
* and (fan-in) node in a pipeline graph, and variants
15
17
* or (fan-out) node in a pipeline graph, and variants
16
18
* multibranch with mixtures of and/or nodes in a pipeline graph
19
+
20
+
## Use pytest as test framework
21
+
PyTest is a testing framework in Python, with simple and easy syntax targeting unit tests and simple functional tests. PyTest can run tests in parallel and automatically detects tests in the test folder. PyTest serves the current goal of testing Codeflare pipelines well.
0 commit comments