@@ -19,6 +19,14 @@ def _clear_env_var(monkeypatch: MonkeyPatch) -> None:
19
19
monkeypatch .delenv ("TOX_GH_MAJOR_MINOR" , raising = False )
20
20
21
21
22
+ @pytest .fixture
23
+ def summary_output_path (monkeypatch : MonkeyPatch , tmp_path : Path ) -> Path :
24
+ path = tmp_path / "gh_out"
25
+ path .touch ()
26
+ monkeypatch .setattr (plugin , "GITHUB_STEP_SUMMARY" , str (path ))
27
+ return path
28
+
29
+
22
30
def test_gh_not_in_actions (monkeypatch : MonkeyPatch , tox_project : ToxProjectCreator ) -> None :
23
31
monkeypatch .delenv ("GITHUB_ACTIONS" , raising = False )
24
32
project = tox_project ({"tox.ini" : "[testenv]\n package=skip" })
@@ -54,18 +62,17 @@ def test_gh_toxenv_set(monkeypatch: MonkeyPatch, tox_project: ToxProjectCreator)
54
62
55
63
56
64
@pytest .mark .parametrize ("via_env" , [True , False ])
57
- def test_gh_ok (monkeypatch : MonkeyPatch , tox_project : ToxProjectCreator , tmp_path : Path , via_env : bool ) -> None :
65
+ def test_gh_ok (
66
+ monkeypatch : MonkeyPatch , tox_project : ToxProjectCreator , tmp_path : Path , summary_output_path : Path , via_env : bool
67
+ ) -> None :
58
68
if via_env :
59
69
monkeypatch .setenv ("TOX_GH_MAJOR_MINOR" , f"{ sys .version_info .major } .{ sys .version_info .minor } " )
60
70
else :
61
71
monkeypatch .setenv ("PATH" , "" )
62
- step_output_file = tmp_path / "gh_out"
63
- step_output_file .touch ()
64
72
empty_requirements = tmp_path / "empty.txt"
65
73
empty_requirements .touch ()
66
74
monkeypatch .setenv ("GITHUB_ACTIONS" , "true" )
67
75
monkeypatch .delenv ("TOXENV" , raising = False )
68
- monkeypatch .setattr (plugin , "GITHUB_STEP_SUMMARY" , str (step_output_file ))
69
76
ini = f"""
70
77
[testenv]
71
78
package = editable
@@ -111,17 +118,14 @@ def test_gh_ok(monkeypatch: MonkeyPatch, tox_project: ToxProjectCreator, tmp_pat
111
118
assert "a: OK" in result .out
112
119
assert "b: OK" in result .out
113
120
114
- summary_text = step_output_file .read_text ()
121
+ summary_text = summary_output_path .read_text ()
115
122
assert ":white_check_mark:: a" in summary_text
116
123
assert ":white_check_mark:: b" in summary_text
117
124
118
125
119
- def test_gh_fail (monkeypatch : MonkeyPatch , tox_project : ToxProjectCreator , tmp_path : Path ) -> None :
120
- step_output_file = tmp_path / "gh_out"
121
- step_output_file .touch ()
126
+ def test_gh_fail (monkeypatch : MonkeyPatch , tox_project : ToxProjectCreator , summary_output_path : Path ) -> None :
122
127
monkeypatch .setenv ("GITHUB_ACTIONS" , "true" )
123
128
monkeypatch .delenv ("TOXENV" , raising = False )
124
- monkeypatch .setattr (plugin , "GITHUB_STEP_SUMMARY" , str (step_output_file ))
125
129
ini = f"""
126
130
[testenv]
127
131
package = skip
@@ -162,6 +166,45 @@ def test_gh_fail(monkeypatch: MonkeyPatch, tox_project: ToxProjectCreator, tmp_p
162
166
assert "a: FAIL code 1" in result .out
163
167
assert "b: FAIL code 1" in result .out
164
168
165
- summary_text = step_output_file .read_text ()
169
+ summary_text = summary_output_path .read_text ()
166
170
assert ":negative_squared_cross_mark:: a" in summary_text
167
171
assert ":negative_squared_cross_mark:: b" in summary_text
172
+
173
+
174
+ def test_gh_single_env_ok (monkeypatch : MonkeyPatch , tox_project : ToxProjectCreator , summary_output_path : Path ) -> None :
175
+ monkeypatch .setenv ("GITHUB_ACTIONS" , "true" )
176
+ monkeypatch .delenv ("TOXENV" , raising = False )
177
+ ini = f"""
178
+ [testenv]
179
+ package = editable
180
+ [gh]
181
+ python =
182
+ { sys .version_info [0 ]} = a
183
+ """
184
+ project = tox_project ({"tox.ini" : ini })
185
+ result = project .run ()
186
+ result .assert_success ()
187
+
188
+ summary_text = summary_output_path .read_text ()
189
+ assert len (summary_text ) == 0
190
+
191
+
192
+ def test_gh_single_env_fail (
193
+ monkeypatch : MonkeyPatch , tox_project : ToxProjectCreator , summary_output_path : Path
194
+ ) -> None :
195
+ monkeypatch .setenv ("GITHUB_ACTIONS" , "true" )
196
+ monkeypatch .delenv ("TOXENV" , raising = False )
197
+ ini = f"""
198
+ [testenv]
199
+ package = skip
200
+ commands = python -c exit(1)
201
+ [gh]
202
+ python =
203
+ { sys .version_info [0 ]} = a
204
+ """
205
+ project = tox_project ({"tox.ini" : ini })
206
+ result = project .run ()
207
+ result .assert_failed ()
208
+
209
+ summary_text = summary_output_path .read_text ()
210
+ assert len (summary_text ) == 0
0 commit comments