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
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -125,15 +125,15 @@ Unit tests are an important part of regression testing to ensure that the code s
125
125
Use the following commands:
126
126
- Run a specific test:
127
127
```bash
128
-
make rununittest MARKER=test_name
128
+
make run_unittest MARKER=test_name
129
129
```
130
130
- Run all tests of a specific test class:
131
131
```bash
132
-
make rununittest MARKER=test_class_name
132
+
make run_unittest MARKER=test_class_name
133
133
```
134
134
- Run all regression tests:
135
135
```bash
136
-
make runregression
136
+
make run_regression
137
137
```
138
138
- Display all test markers:
139
139
```bash
@@ -145,15 +145,15 @@ Use the following commands:
145
145
Used to gauge the effectiveness of tests. It can show which parts of your code are being exercised by tests, and which are not.
146
146
- To generate code coverage simply run the command:
147
147
```bash
148
-
make coverage
148
+
make run_coverage
149
149
```
150
150
A report will be created in the folder `coverage_html`. Simply open the file `coverage_html/index.html`in the web browser of your choice to view a detailed coverage report.
151
151
152
152
### 7. Documentation
153
153
<!-- We have created a detailed presentation that serves as our documentation (for now). Take a look at it [here](). -->
0 commit comments