-
Notifications
You must be signed in to change notification settings - Fork 6
/
pytest.ini
36 lines (36 loc) · 1.12 KB
/
pytest.ini
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
[pytest]
testpaths = tests
norecursedirs = .git docker onetl
cache_dir = .pytest_cache
addopts = --doctest-modules --ignore-glob="tests/libs/**" --ignore-glob="tests/fixtures/**" --ignore-glob="tests/util/**" --ignore-glob="tests/resources/**"
log_cli_level = INFO
markers =
connection: Tests which calls connection constructor or imports optional requirements
db_connection: Tests which requires PySpark to be installed
file_df_connection: Tests which requires PySpark to be installed
file_connection: Tests which imports optional requirements
clickhouse: Clickhouse tests
ftp: FTP tests
ftps: FTPS tests
greenplum: Greenplum tests
hdfs: HDFS tests
hive: Hive tests
kafka: Kafka tests
local_fs: LocalFS tests
mongodb: MongoDB tests
mssql: MSSQL tests
mysql: MySQL tests
oracle: Oracle tests
postgres: Postgres tests
s3: S3 tests
sftp: SFTP tests
samba: Samba tests
teradata: Teradata tests
webdav: WebDAV tests
csv: CSV tests
json: JSON tests
orc: ORC tests
parquet: Parquet tests
xml: XML tests
avro: Avro tests
excel: Excel tests