-
-
Notifications
You must be signed in to change notification settings - Fork 453
/
tox.ini
24 lines (23 loc) · 806 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
[tox]
envlist = {py3}-tensorflow-{2.13,2.16,2.17}
[testenv]
setenv =
PROTOCOL_BUFFERS_PYTHON_IMPLEMENTATION=python
deps = pytest
pylint
flake8
-rrequirements.txt
tensorflow-2.13: tensorflow==2.13
tensorflow-2.16: tensorflow==2.16.2
tensorflow-2.17: tensorflow==2.17
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}