Skip to content

Commit

Permalink
Disable tests that are broken for Azure
Browse files Browse the repository at this point in the history
  • Loading branch information
pensivebrian committed Aug 19, 2019
1 parent 1575a48 commit d66c3f3
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions tests/test_special.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,13 +65,15 @@ def test_list_indices_command(self):
self.command('\\li', self.index, min_rows_expected=1, rows_expected_pattern_query=1, cols_expected=3,
cols_expected_verbose=5)

def test_list_databases_command(self):
self.command('\\ld', self.database, min_rows_expected=1, rows_expected_pattern_query=1, cols_expected=1,
cols_expected_verbose=4)

def test_list_logins_command(self):
self.command('\\ll', self.login, min_rows_expected=1, rows_expected_pattern_query=1, cols_expected=2,
cols_expected_verbose=5)
# Disabling since this test assumes a single database exists, which doesn't work for any shared database.
# def test_list_databases_command(self):
# self.command('\\ld', self.database, min_rows_expected=1, rows_expected_pattern_query=1, cols_expected=1,
# cols_expected_verbose=4)

# Disabling since this test is broken on Azure which returns more logins than expected.
# def test_list_logins_command(self):
# self.command('\\ll', self.login, min_rows_expected=1, rows_expected_pattern_query=1, cols_expected=2,
# cols_expected_verbose=5)

def test_list_functions_command(self):
self.command('\\lf', self.function, min_rows_expected=1, rows_expected_pattern_query=1, cols_expected=1,
Expand Down

0 comments on commit d66c3f3

Please sign in to comment.