File tree 1 file changed +18
-9
lines changed 1 file changed +18
-9
lines changed Original file line number Diff line number Diff line change @@ -39,26 +39,35 @@ Latest dependencies can be found in [requirements.txt](https://github.com/NVIDIA
39
39
40
40
### Unit-tests
41
41
42
- You can run the included tests with:
43
-
42
+ To run unit-tests against local builds:
43
+ ```
44
+ python -m pytest tests/
45
+ ```
46
+ To run unit-tests against installed builds:
44
47
```
45
- python -m pytest
48
+ pytest tests/
46
49
```
47
50
48
51
### Benchmark
49
52
50
- You can run benchmark only tests with:
51
-
53
+ To run unit-tests against local builds:
54
+ ```
55
+ python -m pytest --benchmark-only benchmark/
52
56
```
53
- python -m pytest --benchmark-only
57
+ To run unit-tests against installed builds:
58
+ ```
59
+ pytest --benchmark-only benchmark/
54
60
```
55
61
56
62
### Samples
57
63
58
- You can run the included tests with:
59
-
64
+ To run unit-tests against local builds:
65
+ ```
66
+ python -m pytest benchmark/
67
+ ```
68
+ To run unit-tests against installed builds:
60
69
```
61
- python -m pytest examples
70
+ pytest benchmark/
62
71
```
63
72
64
73
## Examples
You can’t perform that action at this time.
0 commit comments