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