We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 57816ba commit 7a00999Copy full SHA for 7a00999
README.md
@@ -71,14 +71,15 @@ make test-python-tuf
71
make test-go-tuf
72
```
73
74
-Invoking the test suite manually enables more features like running a single test only
75
-and using a client-under-test CLI installed outside of the test suite:
+Invoking the test suite manually enables all [pytest features](https://docs.pytest.org/en/stable/reference/reference.html#command-line-flags)
+like running a single test only or seeing the client output even when test passes:
76
77
```bash
78
make dev
79
./env/bin/pytest tuf_conformance \
80
--entrypoint path/to/my/client-under-test/cli \
81
- -k test_unsigned_metadata
+ -k test_unsigned_metadata \
82
+ -rA
83
84
85
linters can also be invoked with make:
0 commit comments