Skip to content

Commit

Permalink
docs: update of Makefile target (#8669)
Browse files Browse the repository at this point in the history
unit-test and int-test changed respectively to test-unit and test-int in order to match Makefile targets
  • Loading branch information
albatrousse authored Jul 7, 2023
1 parent 93852a0 commit d1ea62e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/dev/how-to-write-and-run-tests.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,11 +72,11 @@ To run a single test you can use:

* for unit test:
```bash
make unit-test test="filename.t"
make test-unit test="filename.t"
```
* for integration test:
```bash
make int-test test="filename.t"
make test-int test="filename.t"
```

If you made change that impact stored expected results, you can use:
Expand All @@ -86,9 +86,9 @@ If you made change that impact stored expected results, you can use:
make update_tests_results
```
* or to generate expected results for a single test
(here for integration test, `unit-test` otherwise)
(here for integration test, `test-unit` otherwise)
```bash
make int-test="filename.t --update-expected results"
make test-int="filename.t --update-expected results"
```

If you re-generate test results, be sure to look carefully that the changes your commit are expected changes.
Expand Down

0 comments on commit d1ea62e

Please sign in to comment.