-
Notifications
You must be signed in to change notification settings - Fork 3
/
pytest.ini
47 lines (35 loc) · 1.08 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
37
38
39
40
41
42
43
44
45
46
47
# TF & some other libraries report a bunch of deprecation warnings
[pytest]
# Ignore specific tests
addopts = -svv
# Add pytest markers
markers =
push: marks tests as push
nightly: marks tests as nightly
# Where pytest should look for tests
testpaths =
# Ops
forge/test/mlir/test_ops.py
forge/test/mlir/test_ops_tf.py
# Features
forge/test/mlir/test_features.py
# API
forge/test/test_api.py
# Model Tests (CNN)
forge/test/model_demos/high_prio/cnn/pytorch
# Model Tests (NLP)
forge/test/model_demos/high_prio/nlp/pytorch
# MNIST Linear
forge/test/mlir/mnist/test_inference.py
forge/test/mlir/mnist/training/test_training.py
forge/test/mlir/test_training.py
# Llama
forge/test/mlir/llama/test_llama_inference.py::test_llama_inference
forge/test/mlir/llama/tests
# Resnet
forge/test/mlir/resnet/test_resnet_inference.py::test_resnet_inference
# Benchmark
# MNIST Linear
forge/test/benchmark/benchmark/models/mnist_linear.py::test_mnist_linear
filterwarnings =
ignore::DeprecationWarning