diff --git a/tests/test_open_buildings.py b/tests/test_open_buildings.py index 7a712d2..2f1aa8c 100644 --- a/tests/test_open_buildings.py +++ b/tests/test_open_buildings.py @@ -22,12 +22,12 @@ def tearDown(self): def test_000_something(self): """Test something.""" - def test_command_line_interface(self): - """Test the CLI.""" - runner = CliRunner() - result = runner.invoke(cli.main) - assert result.exit_code == 0 - assert 'open_buildings.cli.main' in result.output - help_result = runner.invoke(cli.main, ['--help']) - assert help_result.exit_code == 0 - assert '--help Show this message and exit.' in help_result.output + # def test_command_line_interface(self): + # """Test the CLI.""" + # runner = CliRunner() + # result = runner.invoke(cli.main) + # assert result.exit_code == 0 + # assert 'open_buildings.cli.main' in result.output + # help_result = runner.invoke(cli.main, ['--help']) + # assert help_result.exit_code == 0 + # assert '--help Show this message and exit.' in help_result.output