Skip to content

Commit

Permalink
bump wait
Browse files Browse the repository at this point in the history
  • Loading branch information
mmerickel committed Feb 18, 2020
1 parent c27df8f commit 8677f75
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_it.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
def test_myapp_reloads_when_touching_ini(testapp):
testapp.start('myapp', ['--reload'])
testapp.wait_for_response()
time.sleep(2)
time.sleep(3)
util.touch(os.path.join(here, 'myapp/foo.ini'))
testapp.wait_for_response()
testapp.stop()
Expand All @@ -21,7 +21,7 @@ def test_myapp_reloads_when_touching_ini(testapp):
def test_myapp_reloads_when_touching_pyfile(testapp):
testapp.start('myapp', ['--reload'])
testapp.wait_for_response()
time.sleep(2)
time.sleep(3)
util.touch(os.path.join(here, 'myapp/cli.py'))
testapp.wait_for_response()
testapp.stop()
Expand Down

0 comments on commit 8677f75

Please sign in to comment.