File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -82,7 +82,7 @@ def info() -> t.List[t.List[str]]:
8282 ["MySQL" , _mysql_version ()],
8383 ["SQLite" , sqlite3 .sqlite_version ],
8484 ["" , "" ],
85- ["click" , click .__version__ ],
85+ ["click" , str ( click .__version__ ) ],
8686 ["mysql-connector-python" , mysql .connector .__version__ ],
8787 ["pytimeparse2" , pytimeparse2 .__version__ ],
8888 ["simplejson" , simplejson .__version__ ], # type: ignore
Original file line number Diff line number Diff line change 2121class TestSQLite3toMySQL :
2222 def test_no_arguments (self , cli_runner : CliRunner , mysql_database : Engine ) -> None :
2323 result : Result = cli_runner .invoke (sqlite3mysql )
24- assert result .exit_code == 0
24+ assert result .exit_code in { 0 , 2 }
2525 assert all (
2626 message in result .output
2727 for message in {
You can’t perform that action at this time.
0 commit comments