We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8397337 commit 41c37aeCopy full SHA for 41c37ae
CONTRIBUTING.md
@@ -49,6 +49,13 @@ pytest pins -m 'not fs_rsc'
49
50
# run only local filesystem backend tests
51
pytest pins -m 'fs_file'
52
+
53
+# run all tests except those for S3 and GCS
54
+pytest pins -m 'not fs_s3 and not fs_gcs'
55
56
+# run all tests except those using data on GitHub
57
+# n.b. doctests cannot have marks https://github.com/pytest-dev/pytest/issues/5794
58
+pytest pins -m 'not skip_on_github' -k 'not pins.boards.BoardManual'
59
```
60
61
There are two important details to note for testing:
0 commit comments