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
Copy file name to clipboardexpand all lines: README.md
+4-4
Original file line number
Diff line number
Diff line change
@@ -81,7 +81,7 @@ Summary of one-time project setup:
81
81
82
82
## Project Development Workflow
83
83
84
-
We will use a Test Driven Development programming workflow to work on this project. Notice the Red-Green-Refactor steps in the workflow steps outlined below.
84
+
We will use a Test Driven Development programming workflow to work on this project.
85
85
86
86
1. When you want to begin work on this project, ensure that your virtual environment is activated:
87
87
@@ -99,7 +99,7 @@ $ source venv/bin/activate
99
99
-*What is the expected output for the given input?*
100
100
- Remove the lines that contain `@pytest.mark.skip()` for the test(s) you want to run.
101
101
102
-
3. Run the test(s)! (RED)
102
+
3. Run the test(s)!
103
103
-*See the [Details About How to Run Tests](#details-about-how-to-run-tests) section below for more information on how to run test(s).*
104
104
105
105
```bash
@@ -117,11 +117,11 @@ $ pytest
117
117
118
118
7. Re-run the tests.
119
119
120
-
8. Repeat steps 4-7 until that test passes! (GREEN)
120
+
8. Repeat steps 4-7 until that test passes!
121
121
122
122
9. Repeats steps 3-8 until you have finished all tests in the file.
123
123
124
-
10. Consider looking for opportunities to improve your code (REFACTOR)
124
+
10. Consider looking for opportunities to improve your code.
0 commit comments