File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -71,6 +71,7 @@ pytest_test(
71
71
python_version = "PY2" ,
72
72
args = [
73
73
"-n=auto" ,
74
+ "--instafail" ,
74
75
],
75
76
srcs = glob ([
76
77
"test/unit/**/*.py" ,
@@ -103,7 +104,7 @@ pytest_test(
103
104
"test/selenium/webdriver/common/**/*.py" ,
104
105
"test/selenium/webdriver/support/**/*.py" ,
105
106
]),
106
- args = ["--driver=Firefox" ],
107
+ args = ["--instafail" , "-- driver=Firefox" ],
107
108
python_version = "PY2" ,
108
109
tags = [
109
110
"no-sandbox" ,
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ if __name__ == "__main__":
15
15
import sys
16
16
import pytest
17
17
18
- args = sys.argv[1:] + ["-ra", "-s", "--instafail" ] + %s + %s
18
+ args = sys.argv[1:] + ["-ra"] + %s + %s
19
19
20
20
sys.exit(pytest.main(args))""" % (_stringify (ctx .attr .args ), _stringify ([src .path for src in ctx .files .srcs ])),
21
21
is_executable = True )
You can’t perform that action at this time.
0 commit comments