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
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -19,7 +19,7 @@ Thank you for taking our course. Completing the following tasks will prepare you
19
19
git clone <ssh-link>
20
20
```
21
21
in the terminal and substitute the `<ssh-link>` with the link you just copied. After pressing `Enter` your repository will be downloaded into your current working directory.
22
-
- Navigate into the downloaded directory by typing `cd exercise-01-intro-yourname`. Use `ls` to list the contents of the folder you are currently working in. If Visual Studio Code is installed correctly you can open it from the terminal by typing `code .`.
22
+
- Navigate into the downloaded directory by typing `cd exercise-01-intro-yourgitname`. Use `ls` to list the contents of the folder you are currently working in. If Visual Studio Code is installed correctly you can open it from the terminal by typing `code .`.
23
23
24
24
In Vscode, you can now open a rendered version of this readme. Right-click the file and select`Open Preview`.
25
25
@@ -34,7 +34,7 @@ The HRZ-Pool computers run Ubuntu Linux. Download the `Miniconda3 Linux 64-bit`
34
34
35
35
### Task 3: Setting up Vscode for Python development
36
36
- Open Visual Studio Code (Vscode).
37
-
- Click on the extensions tab in Vscode (on the left hand side) or press `Ctrl+Shift+X`. Install the `Python` and `Remote-SSH` extensions. Choose the versions provided by Microsoft.
37
+
- Click on the extensions tab in Vscode (on the left hand side)  or press `Ctrl+Shift+X`. Install the `Python` and `Remote-SSH` extensions. Choose the versions provided by Microsoft.
38
38
- Make the Miniconda interpreter your default in Vscode by pressing `Ctrl+Shift+P`. Type `select interpreter` and press enter. In the following dialogue, choose the `base` environment.
39
39
- (Optional) For the course, we suggest to install `TODO Highlight` extension provided by Wayou Liu. This is handy in identifying TODO parts of exercise much easier.
40
40
@@ -57,7 +57,7 @@ To prevent similar issues, we strongly recommend testing your code. Let's learn
57
57
```bash
58
58
nox -s test
59
59
```
60
-
The python extension provides test integration into Vscode. To use it, click on the lab-flask icon on the left sidebar. When opening it for the first time, it asks you for a configuration.
60
+
The python extension provides test integration into Vscode. To use it, click on the lab-flask icon on the left sidebar . When opening it for the first time, it asks you for a configuration.
61
61
Click the `Configure Python Tests` button and select `pytest` in the ensuing prompt. In the next step, Vscode wants to know the location of the test folder. Choose `tests`.
62
62
Vscode will now display your tests on the sidebar on the left. Click the play symbol next to the tests folder to run all tests.
0 commit comments