Bump to click 7.1.1 to fix flaky tests

This commit is contained in:
Simon Willison 2020-03-21 18:47:51 -07:00
commit e1a817411a
4 changed files with 4 additions and 4 deletions

View file

@ -39,7 +39,7 @@ def test_publish_heroku_invalid_database(mock_which):
runner = CliRunner()
result = runner.invoke(cli.cli, ["publish", "heroku", "woop.db"])
assert result.exit_code == 2
assert 'Path "woop.db" does not exist' in result.output
assert "Path 'woop.db' does not exist" in result.output
@mock.patch("shutil.which")