Commit cf02126 Ayaz Salikhov
committed
1 parent c094bb7 commit cf02126 Copy full SHA for cf02126
File tree 6 files changed +36
-29
lines changed
examples/docker-compose/notebook
6 files changed +36
-29
lines changed Original file line number Diff line number Diff line change
1
+ ---
1
2
ignored :
2
3
- DL3006
3
4
- DL3008
Original file line number Diff line number Diff line change
1
+ ---
1
2
# .readthedocs.yml
2
3
# Read the Docs configuration file
3
4
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
Original file line number Diff line number Diff line change
1
+ ---
1
2
dist : bionic
2
3
language : python
3
4
python :
4
- - 3.7
5
+ - 3.7
5
6
sudo : required
6
7
services :
7
- - docker
8
+ - docker
8
9
9
10
jobs :
10
- include :
11
+ include :
11
12
- stage : diff-test
12
13
install :
13
- - pip install --upgrade pip
14
- - make dev-env
15
- - make lint-install
14
+ - pip install --upgrade pip
15
+ - make dev-env
16
+ - make lint-install
16
17
script :
17
- - set -e
18
- - if [ $(make n-docs-diff) -ne 0 ]; then make docs; fi;
19
- - if [ $(make n-other-diff) -ne 0 ]; then make lint-build-test-all DARGS="--build-arg TEST_ONLY_BUILD=1"; fi;
18
+ - set -e
19
+ - if [ $(make n-docs-diff) -ne 0 ]; then make docs; fi;
20
+ - if [ $(make n-other-diff) -ne 0 ]; then make lint-build-test-all DARGS="--build-arg TEST_ONLY_BUILD=1"; fi;
20
21
- stage : push-tx
21
22
install :
22
- - pip install --upgrade pip
23
- - make dev-env
24
- script :
25
- - if [ $(make n-docs-diff DIFF_RANGE=$TRAVIS_COMMIT_RANGE) -ne 0 ]; then make tx-en; fi;
23
+ - pip install --upgrade pip
24
+ - make dev-env
25
+ script :
26
+ - if [ $(make n-docs-diff DIFF_RANGE=$TRAVIS_COMMIT_RANGE) -ne 0 ]; then make tx-en; fi;
26
27
- stage : full-test
27
28
install :
28
- - pip install --upgrade pip
29
- - make dev-env
30
- - make lint-install
29
+ - pip install --upgrade pip
30
+ - make dev-env
31
+ - make lint-install
31
32
script :
32
- - set -e
33
- - make docs
34
- - make lint-build-test-all DARGS="--build-arg TEST_ONLY_BUILD=1"
33
+ - set -e
34
+ - make docs
35
+ - make lint-build-test-all DARGS="--build-arg TEST_ONLY_BUILD=1"
35
36
36
37
stages :
37
- - name : diff-test
38
- if : type = pull_request
39
- - name : push-tx
40
- if : type = push AND branch = master
41
- - name : full-test
42
- if : type = cron AND branch = master
38
+ - name : diff-test
39
+ if : type = pull_request
40
+ - name : push-tx
41
+ if : type = push AND branch = master
42
+ - name : full-test
43
+ if : type = cron AND branch = master
43
44
44
45
env :
45
46
global :
47
+ # yamllint disable-line
46
48
secure : JDQKgB1laaenzmEGI9gduwK/iS0030qsl62njJg3jib0R8wxBi2OeetEdoGl9m4NFsqqnp0OO7nm4rzGfuwjL1A38flSlXOTxhjm/hvo3vmnqVu5lDcdk9+IRkafnfd3Dyd86tLxRVETOqZwCLmdNkB2fmQII8du5IIqbJuUGp8DrG7kVMf3NBr9rjkZRfByQrgG4s1NXuT61VvpWMPJAOhcrImuHBheVJDEV0U3n6Xavd7Wo+pAHrHU8exvYTZ1IzZMbHc6K0iC/NpCHcH9+9DAeLDk/q1aDNqbTExnQevOHZzNqgHC2qFOlN4jfy/TLYLpLXtUismneBBqVSK3iZso3Vqy2BRXWgouI+Tt+08ffocy9XPwEzSwkgPgDlFVUikPOy5imwjpDb13RMIyMY4CKlSOdQx2rH2kPkZ0MJJPcki3KGuGl3qRvqyblMn+lZvjAu6WVLZfo7EtcxsQ0ZZxbAbGoUVl27FHg+UvIfC0I3wEcZIp7oED47Q8s0MdCijD3AwkRPvx/iyp3J0A42su7kkOooFcmUItEIqegQJ4Aki1FBv2i5vHmBobClktytZceLsKvzCeLjMpL9HcUVfUaJDKRwtUYIozpYeBnac+E6J1s6glcqLrXIHWez8N6SzokBa6SPqdtODdzzk5OJupByub6CYWsRXvxIQ7/wI=
Original file line number Diff line number Diff line change
1
+ ---
1
2
# Copyright (c) Jupyter Development Team.
2
3
# Distributed under the terms of the Modified BSD License.
3
4
@@ -9,8 +10,8 @@ services:
9
10
image : my-notebook
10
11
container_name : ${NAME}
11
12
volumes :
12
- - " work:/home/jovyan/work"
13
- - " secrets:/etc/letsencrypt"
13
+ - " work:/home/jovyan/work"
14
+ - " secrets:/etc/letsencrypt"
14
15
ports :
15
16
- " ${PORT}:8888"
16
17
environment :
Original file line number Diff line number Diff line change
1
+ ---
1
2
# Copyright (c) Jupyter Development Team.
2
3
# Distributed under the terms of the Modified BSD License.
3
4
@@ -9,7 +10,7 @@ services:
9
10
image : my-notebook
10
11
container_name : ${NAME}
11
12
volumes :
12
- - " work:/home/jovyan/work"
13
+ - " work:/home/jovyan/work"
13
14
ports :
14
15
- " ${PORT}:8888"
15
16
Original file line number Diff line number Diff line change
1
+ ---
1
2
# Copyright (c) Jupyter Development Team.
2
3
# Distributed under the terms of the Modified BSD License.
3
4
@@ -9,7 +10,7 @@ services:
9
10
image : my-notebook
10
11
container_name : ${NAME}
11
12
volumes :
12
- - " work:/home/jovyan/work"
13
+ - " work:/home/jovyan/work"
13
14
ports :
14
15
- " ${PORT}:8888"
15
16
environment :
You can’t perform that action at this time.
0 commit comments