Skip to content

Commit

Permalink
Merge branch 'fix-integ-test'
Browse files Browse the repository at this point in the history
* fix-integ-test:
  Disable autoreload in integration tests
  • Loading branch information
jamesls committed May 22, 2018
2 parents 3ce3f79 + d9226d7 commit c4a6468
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/integration/test_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ def test_stack_trace_printed_on_error(local_app):
'app = Chalice(app_name="test")\n'
'foobarbaz\n'
)
p = subprocess.Popen(['chalice', 'local'],
p = subprocess.Popen(['chalice', 'local', '--no-autoreload'],
stdout=subprocess.PIPE, stderr=subprocess.PIPE)
stderr = p.communicate()[1].decode('ascii')
rc = p.returncode
Expand Down

0 comments on commit c4a6468

Please sign in to comment.