Skip to content

Commit

Permalink
Merge branch 'develop' into maintenance/GE-160/GE-314/alexsherstinsky…
Browse files Browse the repository at this point in the history
…/remove_mostly_from_bobster_test_config-2021_07_05-42f
  • Loading branch information
Alex Sherstinsky committed Jul 6, 2021
2 parents e1a7978 + 1bf53cc commit f361a88
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions tests/cli/v012/test_init_pandas.py
Original file line number Diff line number Diff line change
Expand Up @@ -497,7 +497,10 @@ def test_cli_init_on_new_project_with_broken_excel_file_without_trying_again(
"- Please check the file and try again or select a different data file."
in stdout
)
assert ("- Error: File is not a recognized excel file" in stdout) or (
assert (
"- Error: Excel file format cannot be determined, you must specify an engine manually."
in stdout
) or (
"Error: Unsupported format, or corrupt file: Expected BOF record; found b'PRODUCTI'"
in stdout
)
Expand Down Expand Up @@ -566,7 +569,10 @@ def test_cli_init_on_new_project_with_broken_excel_file_try_again_with_different
"- Please check the file and try again or select a different data file."
in stdout
)
assert ("- Error: File is not a recognized excel file" in stdout) or (
assert (
"- Error: Excel file format cannot be determined, you must specify an engine manually."
in stdout
) or (
"Error: Unsupported format, or corrupt file: Expected BOF record; found b'PRODUCTI'"
in stdout
)
Expand Down

0 comments on commit f361a88

Please sign in to comment.