Skip to content

Commit 72d42c3

Browse files
committed
fix code block formatting
1 parent a54592d commit 72d42c3

1 file changed

Lines changed: 4 additions & 6 deletions

File tree

README.md

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -115,14 +115,12 @@ It's useful to have our tests run automatically whenever we push a commit to git
115115
2. Choose "Set up this workflow" for the "Python Application" suggestion.
116116
3. This will open an editor for a YAML file that defines the workflow. You will need to make one change to the default, in order to install several libraries that our code requires. Replace the following line:
117117

118+
pip install flake8 pytest
118119

119-
pip install flake8 pytest
120+
with:
120121

121-
with:
122-
123-
pip install flake8 pytest numpy pandas scipy
124-
125-
Once you have made that change, save it using the "Start Commit" button.
122+
pip install flake8 pytest numpy pandas scipy
123+
Once you have made that change, save it using the "Start Commit" button.
126124
4. Return to the Actions tab, and you should see the action running. Once it completes, it should have a green check mark.
127125

128126
If you would like to add a badge to your README file that shows the status of this test, you can copy a snippet of Markdown using the "Create status badge" button the action, and then insert that into your README.

0 commit comments

Comments
 (0)