forked from NVIDIA-Merlin/dataloader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tox.ini
101 lines (90 loc) · 3.52 KB
/
tox.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
; For all tests that run in Github Actions, see
; .github/workflows/cpu-ci.yml for the workflow definition.
[tox]
envlist = python3.8,test-gpu,test-cpu
[testenv]
commands =
pip install --upgrade pip
pip install .
[testenv:test-cpu]
; Runs in: Github Actions
; Runs all CPU-based tests.
deps =
-rrequirements/base.txt
-rrequirements/dev.txt
commands =
python -m pip install --upgrade git+https://github.com/NVIDIA-Merlin/core.git@{posargs:main}
python -m pip install --upgrade git+https://github.com/NVIDIA-Merlin/nvtabular.git@{posargs:main}
python -m pip install -e .[all]
python -m pip install fsspec==2022.5.0
python -m pytest --cov-report term --cov=merlin -rxs tests/unit tests/examples
[testenv:test-tensorflow]
; Runs in: Github Actions
; Runs all Tensorflow-based tests.
deps =
-rrequirements/base.txt
-rrequirements/dev.txt
commands =
python -m pip install --upgrade git+https://github.com/NVIDIA-Merlin/core.git@{posargs:main}
python -m pip install --upgrade git+https://github.com/NVIDIA-Merlin/nvtabular.git@{posargs:main}
python -m pip install -e .[tensorflow]
python -m pip install fsspec==2022.5.0
python -m pytest -rxs -m tensorflow tests/unit tests/examples
[testenv:test-torch]
; Runs in: Github Actions
; Runs all Tensorflow-based tests.
deps =
-rrequirements/base.txt
-rrequirements/dev.txt
commands =
python -m pip install --upgrade git+https://github.com/NVIDIA-Merlin/core.git@{posargs:main}
python -m pip install --upgrade git+https://github.com/NVIDIA-Merlin/nvtabular.git@{posargs:main}
python -m pip install -e .[torch]
python -m pip install fsspec==2022.5.0
python -m pytest -rxs -m torch tests/unit tests/examples
[testenv:test-jax]
; Runs in: Github Actions
; Runs all Tensorflow-based tests.
deps =
-rrequirements/base.txt
-rrequirements/dev.txt
commands =
python -m pip install --upgrade git+https://github.com/NVIDIA-Merlin/core.git@{posargs:main}
python -m pip install --upgrade git+https://github.com/NVIDIA-Merlin/nvtabular.git@{posargs:main}
python -m pip install -e .[jax]
python -m pip install fsspec==2022.5.0
python -m pytest -rxs -m jax tests/unit tests/examples
[testenv:test-gpu]
passenv =
NR_USER
CUDA_VISIBLE_DEVICES
sitepackages=true
; Runs in: Internal Jenkins
; Runs GPU-based tests.
; The jenkins jobs run on an image based on merlin-hugectr. This will include all cudf configuration
; and other gpu-specific libraries that we can enxpect will always exist. Thus, we don't need
; to install requirements.txt yet. As we get better at python environment isolation, we will
; need to add some back.
deps =
-rrequirements/dev.txt
pytest
pytest-cov
commands =
python -m pip install --upgrade git+https://github.com/NVIDIA-Merlin/core.git
python -m pip install --upgrade git+https://github.com/NVIDIA-Merlin/nvtabular.git
python -m pytest --cov-report term --cov merlin -rxs tests/unit tests/examples
[testenv:docs]
; Runs in: Github Actions
; Generates documentation with sphinx. There are other steps in the Github Actions workflow
; to publish the documentation on release.
changedir = {toxinidir}
deps = -rrequirements/docs.txt
commands =
python -m sphinx.cmd.build -P -b html docs/source docs/build/html
[testenv:docs-multi]
; Run the multi-version build that is shown on GitHub Pages.
changedir = {toxinidir}
deps = -rrequirements-docs.txt
commands =
sphinx-multiversion --dump-metadata docs/source docs/build/html | jq "keys"
sphinx-multiversion docs/source docs/build/html