forked from philipperemy/keras-tcn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tox.ini
28 lines (27 loc) · 985 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
27
28
[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
pylint
flake8
-rrequirements.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 = tasks/
commands = pylint --disable=R,C,W,E1136 ../tcn
flake8 ../tcn --count --select=E9,F63,F7,F82 --show-source --statistics
flake8 ../tcn --count --exclude=michel,tests --max-line-length 127 --statistics
python tcn_call_test.py
python save_reload_sequential_model.py
python sequential.py
python multi_length_sequences.py
python plot_tcn_model.py
passenv = *
install_command = pip install {packages}