forked from tensorlayer/TensorLayer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
39 lines (38 loc) · 1.29 KB
/
.travis.yml
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
32
33
34
35
36
37
38
39
# https://docs.travis-ci.com/user/languages/python/
language: python
python:
- "2.7"
- "3.5"
# - "3.6" # TODO: make it work: https://github.com/tensorlayer/tensorlayer/issues/291
install:
- pip install tensorflow
- pip install -r tests/requirements.txt
- pip install .
script:
# units test
# https://docs.pytest.org/en/latest/
# TODO: make it work
# - pytest
# smoke tests
# - make test # TODO: make it use python3 by default
- python tests/test_yapf_format.py
- python tests/test_pydocstyle.py
- python tests/test_mnist_simple.py
- python tests/test_reuse_mlp.py
- python tests/test_layers_basic.py
- python tests/test_layers_convolution.py
- python tests/test_layers_core.py
- python tests/test_layers_extend.py
- python tests/test_layers_flow_control.py
- python tests/test_layers_importer.py
- python tests/test_layers_merge.py
- python tests/test_layers_normalization.py
- python tests/test_layers_padding.py
- python tests/test_layers_pooling.py
- python tests/test_layers_recurrent.py
- python tests/test_layers_shape.py
- python tests/test_layers_spatial_transformer.py
- python tests/test_layers_special_activation.py
- python tests/test_layers_stack.py
- python tests/test_layers_super_resolution.py
- python tests/test_layers_time_distributed.py