forked from databricks/lilac
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pytest.ini
22 lines (22 loc) · 911 Bytes
/
pytest.ini
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# Filter deprecation warnings from subpackages so they don't spam the console when testing.
[pytest]
testpaths =
lilac
filterwarnings =
ignore::DeprecationWarning:google.api_core.*:
ignore::DeprecationWarning:grpc_gcp.*:
ignore::DeprecationWarning:hdfs.*:
ignore::UserWarning:tensorflow_io.*:
ignore::DeprecationWarning:tornado.*:
ignore::DeprecationWarning:pkg_resources.*:
ignore::DeprecationWarning:google.rpc.*:
ignore::DeprecationWarning:scipy.*:
ignore::DeprecationWarning:huggingface_hub.*:
ignore::DeprecationWarning:pydantic_core.*:
ignore:PydanticDeprecatedSince20:DeprecationWarning
ignore::DeprecationWarning:hdbscan.*:
markers =
largedownload: Marks a test as having a large download. Wont run on github. (deselect with '-m "not largedownload"')
asyncio_mode = auto
# Treat classes that end in "Suite" as test suites.
python_classes = *Suite