Skip to content

Commit

Permalink
Disable static web server test on GHA environment (flaky on Ubuntu) (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
abhinavsingh authored Nov 7, 2021
1 parent 2c4ad46 commit a6d7fae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/http/test_web_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ def test_default_web_server_returns_404(
)

@unittest.skipIf(
os.environ.get('GITHUB_ACTIONS', False),
os.environ.get('GITHUB_ACTIONS', True),
'Disabled on GitHub actions because this test is flaky on GitHub infrastructure.',
)
@mock.patch('selectors.DefaultSelector')
Expand Down

0 comments on commit a6d7fae

Please sign in to comment.