forked from philipperemy/keras-tcn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tox.ini
25 lines (24 loc) · 865 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
[tox]
envlist = {py3}-tensorflow-{2.6.2,2.7.0,2.8.0,2.9.0}
[testenv]
setenv =
PROTOCOL_BUFFERS_PYTHON_IMPLEMENTATION=python
deps = pytest
pylint
flake8
-rrequirements.txt
tensorflow-2.6.2: tensorflow==2.6.2
tensorflow-2.7.0: tensorflow==2.7.0
tensorflow-2.8.0: tensorflow==2.8.0
tensorflow-2.9.0: tensorflow==2.9.0rc2
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}