-
-
Notifications
You must be signed in to change notification settings - Fork 185
/
tox.ini
26 lines (25 loc) · 834 Bytes
/
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
[tox]
envlist = {py3}-tensorflow-{2.9,2.10,2.11,2.12,2.13,2.14,2.15}
[testenv]
setenv =
PROTOCOL_BUFFERS_PYTHON_IMPLEMENTATION=python
deps = pytest
-rrequirements.txt
-rexamples/examples-requirements.txt
tensorflow-2.9: tensorflow==2.9
tensorflow-2.10: tensorflow==2.10
tensorflow-2.11: tensorflow==2.11
tensorflow-2.12: tensorflow==2.12
tensorflow-2.13: tensorflow==2.13
tensorflow-2.14: tensorflow==2.14
tensorflow-2.15: tensorflow==2.15
changedir = examples
commands = python recurrent.py
python multi_inputs.py
python heat_map.py
python vgg16.py
python dump_activations_to_disk.py
pytest ../tests --disable-pytest-warnings
passenv = *
install_command = pip install {packages}
parallel_show_output = true