Browse Source

fix csv testcases to overlook missing labels

pull/861/head
Christian Gill 4 years ago
parent
commit
f1ff2f6066
2 changed files with 5 additions and 5 deletions
  1. 0
      app/api/tests/data/example_column_and_row_not_matching.xlsx
  2. 10
      app/api/tests/test_api.py

app/api/tests/data/example.invalid.1.xlsx → app/api/tests/data/example_column_and_row_not_matching.xlsx

10
app/api/tests/test_api.py

@ -1225,11 +1225,11 @@ class TestUploader(APITestCase):
file_format='excel',
expected_status=status.HTTP_201_CREATED)
def test_cannot_upload_excel_file_does_not_match_column_and_row(self):
def test_can_upload_excel_file_does_not_match_column_and_row(self):
self.upload_test_helper(project_id=self.classification_project.id,
filename='example.invalid.1.xlsx',
filename='example_column_and_row_not_matching.xlsx',
file_format='excel',
expected_status=status.HTTP_400_BAD_REQUEST)
expected_status=status.HTTP_201_CREATED)
def test_cannot_upload_excel_file_has_too_many_columns(self):
self.upload_test_helper(project_id=self.classification_project.id,
@ -1402,10 +1402,10 @@ class TestParser(APITestCase):
parser=CoNLLParser())
def test_give_classification_data_to_csv_parser(self):
self.parser_helper(filename='example.csv', parser=CSVParser())
self.parser_helper(filename='example.csv', parser=CSVParser(), include_label=False)
def test_give_seq2seq_data_to_csv_parser(self):
self.parser_helper(filename='example.csv', parser=CSVParser())
self.parser_helper(filename='example.csv', parser=CSVParser(), include_label=False)
def test_give_classification_data_to_json_parser(self):
self.parser_helper(filename='classification.jsonl', parser=JSONParser())

Loading…
Cancel
Save