Skip to content

Commit

Permalink
Increase test delay for Azure Pipelines
Browse files Browse the repository at this point in the history
  • Loading branch information
mdrachuk committed Nov 12, 2019
1 parent a7b0213 commit a5bd00c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ def test_serves_live_reload_js(self):
assert identifier == requests.get('http://0.0.0.0:8033/id').text
with (Path(self.directory) / 'new-file').open('w') as f:
f.write('Test file changes')
time.sleep(0.1)
time.sleep(1)
with open(server.id_path) as idfile:
new_identifier = idfile.read()
assert new_identifier == requests.get('http://0.0.0.0:8033/id').text
Expand Down

0 comments on commit a5bd00c

Please sign in to comment.