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]]:
82
82
["MySQL" , _mysql_version ()],
83
83
["SQLite" , sqlite3 .sqlite_version ],
84
84
["" , "" ],
85
- ["click" , click .__version__ ],
85
+ ["click" , str ( click .__version__ ) ],
86
86
["mysql-connector-python" , mysql .connector .__version__ ],
87
87
["pytimeparse2" , pytimeparse2 .__version__ ],
88
88
["simplejson" , simplejson .__version__ ], # type: ignore
Original file line number Diff line number Diff line change 21
21
class TestSQLite3toMySQL :
22
22
def test_no_arguments (self , cli_runner : CliRunner , mysql_database : Engine ) -> None :
23
23
result : Result = cli_runner .invoke (sqlite3mysql )
24
- assert result .exit_code == 0
24
+ assert result .exit_code in { 0 , 2 }
25
25
assert all (
26
26
message in result .output
27
27
for message in {
You can’t perform that action at this time.
0 commit comments