Skip to content

Commit a6d7fae

Browse files
authored
Disable static web server test on GHA environment (flaky on Ubuntu) (#700)
1 parent 2c4ad46 commit a6d7fae

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/http/test_web_server.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ def test_default_web_server_returns_404(
137137
)
138138

139139
@unittest.skipIf(
140-
os.environ.get('GITHUB_ACTIONS', False),
140+
os.environ.get('GITHUB_ACTIONS', True),
141141
'Disabled on GitHub actions because this test is flaky on GitHub infrastructure.',
142142
)
143143
@mock.patch('selectors.DefaultSelector')

0 commit comments

Comments
 (0)