Skip to content

Commit feea122

Browse files
authored
Merge pull request #311 from seleniumbase/ignore-pytest-cacheprovider
Ignore pytest cacheprovider
2 parents 6ad3977 + e1628f4 commit feea122

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

pytest.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
[pytest]
22
# Let console output be seen. Don't override the pytest plugin.
3-
addopts = --capture=no --ignore conftest.py
3+
addopts = --capture=no --ignore conftest.py -p no:cacheprovider
44
filterwarnings = ignore::DeprecationWarning

seleniumbase/console_scripts/sb_mkdir.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,8 @@ def main():
5252

5353
data = []
5454
data.append("[pytest]")
55-
data.append("addopts = --capture=no --ignore conftest.py")
55+
data.append("addopts = --capture=no --ignore conftest.py "
56+
"-p no:cacheprovider")
5657
data.append("filterwarnings = ignore::DeprecationWarning")
5758
file_path = "%s/%s" % (dir_name, "pytest.ini")
5859
file = codecs.open(file_path, "w+", "utf-8")

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
setup(
1919
name='seleniumbase',
20-
version='1.22.7',
20+
version='1.22.8',
2121
description='Reliable Browser Automation & Testing Framework',
2222
long_description=long_description,
2323
long_description_content_type='text/markdown',

0 commit comments

Comments
 (0)