Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions apis/python/tests/test_tiledbvcf.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
import math
import numpy as np
import subprocess
import os
import pandas as pd
import pyarrow as pa
import re
import glob
import shutil
import platform
Expand Down Expand Up @@ -41,7 +39,7 @@ def check_if_compatible(uri):
try:
with tiledb.open(uri):
return True
except tiledb.cc.TileDBError as e:
except tiledb.libtiledb.TileDBError as e:
if "incompatible format version" in str(e).lower():
raise pytest.skip.Exception(
"Test skipped due to incompatible format version"
Expand Down
Loading