forked from NVIDIA-Merlin/Merlin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtorch-test.yaml
34 lines (34 loc) · 956 Bytes
/
torch-test.yaml
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
schemaVersion: 2.0.0
commandTests:
- name: "CuPy Python package"
command: "python"
args: ["-c", "import cupy"]
expectedOutput: [""]
- name: "CuDF Python package"
command: "python"
args: ["-c", "import cudf"]
expectedOutput: [""]
- name: "Torch Python package"
command: "python"
args: ["-c", "import torch"]
expectedOutput: [""]
- name: "Merlin Core tests"
command: "pytest"
args: ["/core/tests/unit/"]
exitCode: 0
- name: "NVT dataloader tests"
command: "pytest"
args: ["/nvtabular/tests/unit/loader/"]
exitCode: 0
- name: "NVT inference tests"
command: "pytest"
args: ["/nvtabular/tests/unit/test_triton_inference.py"]
exitCode: 0
- name: "NVT notebook tests"
command: "pytest"
args: ["/nvtabular/tests/unit/test_notebooks.py"]
exitCode: 0
- name: "Transformers4Rec tests"
command: "pytest"
args: ["/transformers4rec/tests/torch/"]
exitCode: 0