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 f53d5d3 commit eefba65Copy full SHA for eefba65
Makefile
@@ -29,3 +29,7 @@ check-flake8:
29
.PHONY: check-black
30
check-black:
31
$(call runtox, "black")
32
+
33
+.PHONY: test-unprivileged
34
+test-unprivileged:
35
+ $(call runtox, "pytest-unprivileged")
tox.ini
@@ -18,6 +18,13 @@ deps =
18
pytest-randomly
19
commands = pytest -vrfEsxXpP testcases/
20
21
+[testenv:pytest-unprivileged]
22
+deps =
23
+ pytest
24
+ pyyaml
25
+ pytest-randomly
26
+commands = pytest -vrfEsxXpP -k 'not privileged' testcases/
27
28
[testenv:sanity]
deps =
pytest
0 commit comments