-
-
Notifications
You must be signed in to change notification settings - Fork 463
Expand file tree
/
Copy pathtox.ini
More file actions
31 lines (25 loc) · 721 Bytes
/
Copy pathtox.ini
File metadata and controls
31 lines (25 loc) · 721 Bytes
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
[tox]
envlist = py3-tf217, py3-tf218, py3-tf219
[testenv]
setenv =
PROTOCOL_BUFFERS_PYTHON_IMPLEMENTATION=python
deps =
pytest
pylint
flake8
-rrequirements.txt
tf217: tensorflow==2.17.*
tf218: tensorflow==2.18.*
tf219: tensorflow==2.19.*
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}