Skip to content

Commit

Permalink
added doc for tests
Browse files Browse the repository at this point in the history
  • Loading branch information
pattacini committed Dec 30, 2024
1 parent dcacaa2 commit 4adb749
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions tests/dry-run/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,29 @@ The CI can perform two types of dry-run:
2. DEV dry-run, to check the consistency of the devices: e.g., missing parameters, deprecated devices...

The output of the dry-run is stored as artifact within the CI workflow to enable later inspection.

### Invoking `ctest`

#### List available tests
```console
ctest -N
```

#### Run specific tests
```console
ctest -R test_name
ctest -R "test.*"
```

#### Run tests associated to specific labels
```console
ctest -L "label_1;label_2"
```

#### Run all available tests
```console
ctest
```

### Tests skipped
Tests that have to be excluded are listed in `skip_tests.txt` file.

0 comments on commit 4adb749

Please sign in to comment.