Skip to content

Commit 132b6bc

Browse files
authored
Do not yapf build/lib/glow/functions.py (#344)
* do not yapf functions.py in build Signed-off-by: Karen Feng <karen.feng@databricks.com> * Extend no output timeout for docs tests Signed-off-by: Karen Feng <karen.feng@databricks.com> * Extend Python timeout Signed-off-by: Karen Feng <karen.feng@databricks.com>
1 parent 572a1b3 commit 132b6bc

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

.circleci/config.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -119,6 +119,7 @@ jobs:
119119
sbt coverage core/test coverageReport exit
120120
- run:
121121
name: Run docs tests
122+
no_output_timeout: 30m
122123
environment:
123124
command: |
124125
export PATH=$HOME/conda/envs/glow/bin:$PATH
@@ -127,7 +128,7 @@ jobs:
127128
sbt docs/test exit
128129
- run:
129130
name: Run Python tests
130-
no_output_timeout: 30m
131+
no_output_timeout: 90m
131132
environment:
132133
command: |
133134
export PATH=$HOME/conda/envs/glow/bin:$PATH
@@ -178,6 +179,7 @@ jobs:
178179
sbt core/test exit
179180
- run:
180181
name: Run docs tests
182+
no_output_timeout: 30m
181183
environment:
182184
command: |
183185
export PATH=$HOME/conda/envs/glow/bin:$PATH
@@ -186,7 +188,7 @@ jobs:
186188
sbt docs/test exit
187189
- run:
188190
name: Run Python tests
189-
no_output_timeout: 30m
191+
no_output_timeout: 90m
190192
environment:
191193
command: |
192194
export PATH=$HOME/conda/envs/glow/bin:$PATH
@@ -228,6 +230,7 @@ jobs:
228230
sbt core/test exit
229231
- run:
230232
name: Run docs tests
233+
no_output_timeout: 30m
231234
environment:
232235
command: |
233236
export PATH=$HOME/conda/envs/glow/bin:$PATH
@@ -236,7 +239,7 @@ jobs:
236239
sbt docs/test exit
237240
- run:
238241
name: Run Python tests
239-
no_output_timeout: 30m
242+
no_output_timeout: 90m
240243
environment:
241244
command: |
242245
export PATH=$HOME/conda/envs/glow/bin:$PATH

build.sbt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -291,6 +291,8 @@ ThisBuild / yapf := {
291291
"--recursive",
292292
"--exclude",
293293
"python/glow/functions.py",
294+
"--exclude",
295+
"python/build/lib/glow/functions.py",
294296
"python")
295297
).!
296298
require(ret == 0, "Python style tests failed")

0 commit comments

Comments
 (0)