Skip to content

Commit 1867452

Browse files
committed
fix for new version of click
1 parent d045c74 commit 1867452

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

tests/test_cli.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -649,7 +649,7 @@ def test_vcf_convert_overwrite_zarr_confirm_yes(self, mocked, tmp_path, response
649649
def test_convert_tskit(self, mocked, tmp_path, progress, flag):
650650
ts_path = "tests/data/ts/example.trees"
651651
zarr_path = tmp_path / "zarr"
652-
runner = ct.CliRunner(mix_stderr=False)
652+
runner = ct.CliRunner()
653653
result = runner.invoke(
654654
cli.tskit2zarr,
655655
f"convert {ts_path} {zarr_path} {flag}",
@@ -672,7 +672,7 @@ def test_tskit_convert_overwrite_zarr_confirm_yes(self, mocked, tmp_path, respon
672672
ts_path = "tests/data/ts/example.trees"
673673
zarr_path = tmp_path / "zarr"
674674
zarr_path.mkdir()
675-
runner = ct.CliRunner(mix_stderr=False)
675+
runner = ct.CliRunner()
676676
result = runner.invoke(
677677
cli.tskit2zarr,
678678
f"convert {ts_path} {zarr_path}",
@@ -694,7 +694,7 @@ def test_tskit_convert_overwrite_zarr_confirm_no(self, mocked, tmp_path, respons
694694
ts_path = "tests/data/ts/example.trees"
695695
zarr_path = tmp_path / "zarr"
696696
zarr_path.mkdir()
697-
runner = ct.CliRunner(mix_stderr=False)
697+
runner = ct.CliRunner()
698698
result = runner.invoke(
699699
cli.tskit2zarr,
700700
f"convert {ts_path} {zarr_path}",
@@ -711,7 +711,7 @@ def test_tskit_convert_overwrite_zarr_force(self, mocked, tmp_path, force_arg):
711711
ts_path = "tests/data/ts/example.trees"
712712
zarr_path = tmp_path / "zarr"
713713
zarr_path.mkdir()
714-
runner = ct.CliRunner(mix_stderr=False)
714+
runner = ct.CliRunner()
715715
result = runner.invoke(
716716
cli.tskit2zarr,
717717
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):
730730
def test_tskit_convert_with_options(self, mocked, tmp_path):
731731
ts_path = "tests/data/ts/example.trees"
732732
zarr_path = tmp_path / "zarr"
733-
runner = ct.CliRunner(mix_stderr=False)
733+
runner = ct.CliRunner()
734734
result = runner.invoke(
735735
cli.tskit2zarr,
736736
f"convert {ts_path} {zarr_path} --contig-id chr1 "
@@ -1047,7 +1047,7 @@ class TestTskitEndToEnd:
10471047
def test_convert(self, tmp_path):
10481048
ts_path = "tests/data/ts/example.trees"
10491049
zarr_path = tmp_path / "zarr"
1050-
runner = ct.CliRunner(mix_stderr=False)
1050+
runner = ct.CliRunner()
10511051
result = runner.invoke(
10521052
cli.tskit2zarr,
10531053
f"convert {ts_path} {zarr_path}",

0 commit comments

Comments
 (0)