File tree Expand file tree Collapse file tree 3 files changed +19
-16
lines changed Expand file tree Collapse file tree 3 files changed +19
-16
lines changed Original file line number Diff line number Diff line change @@ -335,7 +335,7 @@ py_library(
335
335
"test/selenium/webdriver/support/conftest.py" ,
336
336
],
337
337
data = [
338
- "pytest.ini " ,
338
+ "pyproject.toml " ,
339
339
"setup.cfg" ,
340
340
"test/selenium/webdriver/common/test_file.txt" ,
341
341
"test/selenium/webdriver/common/test_file2.txt" ,
Original file line number Diff line number Diff line change 1
1
[build-system ]
2
2
requires = [" setuptools" , " setuptools-rust" ]
3
3
build-backend = " setuptools.build_meta"
4
+
5
+ [tool .pytest .ini_options ]
6
+ console_output_style = " progress"
7
+ faulthandler_timeout = 60
8
+ log_cli = true
9
+ trio_mode = true
10
+ markers = [
11
+ " xfail_chrome: Tests expected to fail in Chrome" ,
12
+ " xfail_edge: Tests expected to fail in Edge" ,
13
+ " xfail_firefox: Tests expected to fail in Firefox" ,
14
+ " xfail_ie: Tests expected to fail in IE" ,
15
+ " xfail_remote: Tests expected to fail with Remote webdriver" ,
16
+ " xfail_safari: Tests expected to fail in Safari" ,
17
+ " xfail_webkitgtk: Tests expected to fail in webkitgtk" ,
18
+ " no_driver_after_test: If there are no drivers after the test it will create a new one."
19
+ ]
20
+ python_files = [" test_*.py" , " *_test.py" ]
21
+ testpaths = [" test" ]
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments