@@ -649,7 +649,7 @@ def test_vcf_convert_overwrite_zarr_confirm_yes(self, mocked, tmp_path, response
649
649
def test_convert_tskit (self , mocked , tmp_path , progress , flag ):
650
650
ts_path = "tests/data/ts/example.trees"
651
651
zarr_path = tmp_path / "zarr"
652
- runner = ct .CliRunner (mix_stderr = False )
652
+ runner = ct .CliRunner ()
653
653
result = runner .invoke (
654
654
cli .tskit2zarr ,
655
655
f"convert { ts_path } { zarr_path } { flag } " ,
@@ -672,7 +672,7 @@ def test_tskit_convert_overwrite_zarr_confirm_yes(self, mocked, tmp_path, respon
672
672
ts_path = "tests/data/ts/example.trees"
673
673
zarr_path = tmp_path / "zarr"
674
674
zarr_path .mkdir ()
675
- runner = ct .CliRunner (mix_stderr = False )
675
+ runner = ct .CliRunner ()
676
676
result = runner .invoke (
677
677
cli .tskit2zarr ,
678
678
f"convert { ts_path } { zarr_path } " ,
@@ -694,7 +694,7 @@ def test_tskit_convert_overwrite_zarr_confirm_no(self, mocked, tmp_path, respons
694
694
ts_path = "tests/data/ts/example.trees"
695
695
zarr_path = tmp_path / "zarr"
696
696
zarr_path .mkdir ()
697
- runner = ct .CliRunner (mix_stderr = False )
697
+ runner = ct .CliRunner ()
698
698
result = runner .invoke (
699
699
cli .tskit2zarr ,
700
700
f"convert { ts_path } { zarr_path } " ,
@@ -711,7 +711,7 @@ def test_tskit_convert_overwrite_zarr_force(self, mocked, tmp_path, force_arg):
711
711
ts_path = "tests/data/ts/example.trees"
712
712
zarr_path = tmp_path / "zarr"
713
713
zarr_path .mkdir ()
714
- runner = ct .CliRunner (mix_stderr = False )
714
+ runner = ct .CliRunner ()
715
715
result = runner .invoke (
716
716
cli .tskit2zarr ,
717
717
f"convert { ts_path } { zarr_path } { force_arg } " ,
@@ -730,7 +730,7 @@ def test_tskit_convert_overwrite_zarr_force(self, mocked, tmp_path, force_arg):
730
730
def test_tskit_convert_with_options (self , mocked , tmp_path ):
731
731
ts_path = "tests/data/ts/example.trees"
732
732
zarr_path = tmp_path / "zarr"
733
- runner = ct .CliRunner (mix_stderr = False )
733
+ runner = ct .CliRunner ()
734
734
result = runner .invoke (
735
735
cli .tskit2zarr ,
736
736
f"convert { ts_path } { zarr_path } --contig-id chr1 "
@@ -1047,7 +1047,7 @@ class TestTskitEndToEnd:
1047
1047
def test_convert (self , tmp_path ):
1048
1048
ts_path = "tests/data/ts/example.trees"
1049
1049
zarr_path = tmp_path / "zarr"
1050
- runner = ct .CliRunner (mix_stderr = False )
1050
+ runner = ct .CliRunner ()
1051
1051
result = runner .invoke (
1052
1052
cli .tskit2zarr ,
1053
1053
f"convert { ts_path } { zarr_path } " ,
0 commit comments