Skip to content

Commit dbb55eb

Browse files
committed
Remove commented unittest.skip() decorators
pytest.mark.skip() decorators may be added as needed.
1 parent be1fb30 commit dbb55eb

File tree

1 file changed

+0
-9
lines changed

1 file changed

+0
-9
lines changed

reportsizetrends/tests/test_reportsizetrends.py

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -24,14 +24,12 @@ def values(self):
2424
class TestReportsizetrends(unittest.TestCase):
2525
reportsizetrends.set_verbosity(enable_verbosity=False)
2626

27-
# @unittest.skip("")
2827
def test_set_verbosity(self):
2928
with pytest.raises(TypeError):
3029
reportsizetrends.set_verbosity(enable_verbosity=2)
3130
reportsizetrends.set_verbosity(enable_verbosity=True)
3231
reportsizetrends.set_verbosity(enable_verbosity=False)
3332

34-
# @unittest.skip("")
3533
def test_report_size_trends(self):
3634
google_key_file = "test_google_key_file"
3735
flash = 42
@@ -99,7 +97,6 @@ def test_report_size_trends(self):
9997
report_size_trends.report_size_trends()
10098
report_size_trends.create_row.assert_not_called()
10199

102-
# @unittest.skip("")
103100
def test_get_heading_row_data(self):
104101
spreadsheet_id = "test_spreadsheet_id"
105102
sheet_name = "test_sheet_name"
@@ -124,7 +121,6 @@ def test_get_heading_row_data(self):
124121
Service.get.assert_called_once_with(spreadsheetId=spreadsheet_id, range=spreadsheet_range)
125122
Service.execute.assert_called_once()
126123

127-
# @unittest.skip("")
128124
def test_populate_shared_data_headings(self):
129125
spreadsheet_id = "test_spreadsheet_id"
130126
sheet_name = "test_sheet_name"
@@ -157,7 +153,6 @@ def test_populate_shared_data_headings(self):
157153
)
158154
Service.execute.assert_called_once()
159155

160-
# @unittest.skip("")
161156
def test_get_data_column_letters(self):
162157
fqbn = "test_fqbn"
163158

@@ -182,7 +177,6 @@ def test_get_data_column_letters(self):
182177
assert "B" == column_letters["flash"]
183178
assert "C" == column_letters["ram"]
184179

185-
# @unittest.skip("")
186180
def test_populate_data_column_headings(self):
187181
spreadsheet_id = "test_spreadsheet_id"
188182
sheet_name = "test_sheet_name"
@@ -215,7 +209,6 @@ def test_populate_data_column_headings(self):
215209
body={"values": json.loads(board_data_headings_data)})
216210
Service.execute.assert_called_once()
217211

218-
# @unittest.skip("")
219212
def test_get_current_row(self):
220213
spreadsheet_id = "test_spreadsheet_id"
221214
sheet_name = "test_sheet_name"
@@ -241,7 +234,6 @@ def test_get_current_row(self):
241234
Service.execute = unittest.mock.MagicMock(return_value={"values": [["foo"], ["bar"]]})
242235
assert {"populated": False, "number": 3} == report_size_trends.get_current_row()
243236

244-
# @unittest.skip("")
245237
def test_create_row(self):
246238
spreadsheet_id = "test_spreadsheet_id"
247239
sheet_name = "test_sheet_name"
@@ -275,7 +267,6 @@ def test_create_row(self):
275267
body={"values": json.loads(shared_data_columns_data)})
276268
Service.execute.assert_called_once()
277269

278-
# @unittest.skip("")
279270
def test_write_memory_usage_data(self):
280271
spreadsheet_id = "test_spreadsheet_id"
281272
sheet_name = "test_sheet_name"

0 commit comments

Comments
 (0)