We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 65fc2a1 commit f93ca64Copy full SHA for f93ca64
1 file changed
tests/test_tskit_data.py
@@ -19,10 +19,6 @@
19
from vcztools.plink import write_plink
20
from vcztools.vcf_writer import write_vcf
21
22
-pytestmark = pytest.mark.skipif(
23
- sys.platform == "win32", reason="Not supported on Windows"
24
-)
25
-
26
27
def add_mutations(ts):
28
# Add some mutation to the tree sequence. This guarantees that
@@ -211,6 +207,7 @@ def fx_simple_ts(tmp_path):
211
207
# handled)
212
208
213
209
210
+@pytest.mark.skipIf(sys.platform == "win32", reason="Not supported on Windows")
214
class TestVcfRoundTrip:
215
def assert_bio2zarr_rt(self, tmp_path, tskit_vcz):
216
vcf_path = tmp_path / "out.vcf"
0 commit comments