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 6ad3977 commit 6f70f3aCopy full SHA for 6f70f3a
pytest.ini
@@ -1,4 +1,4 @@
1
[pytest]
2
# Let console output be seen. Don't override the pytest plugin.
3
-addopts = --capture=no --ignore conftest.py
+addopts = --capture=no --ignore conftest.py -p no:cacheprovider
4
filterwarnings = ignore::DeprecationWarning
seleniumbase/console_scripts/sb_mkdir.py
@@ -52,7 +52,8 @@ def main():
52
53
data = []
54
data.append("[pytest]")
55
- data.append("addopts = --capture=no --ignore conftest.py")
+ data.append("addopts = --capture=no --ignore conftest.py "
56
+ "-p no:cacheprovider")
57
data.append("filterwarnings = ignore::DeprecationWarning")
58
file_path = "%s/%s" % (dir_name, "pytest.ini")
59
file = codecs.open(file_path, "w+", "utf-8")
0 commit comments