File tree Expand file tree Collapse file tree 2 files changed +13
-2
lines changed Expand file tree Collapse file tree 2 files changed +13
-2
lines changed Original file line number Diff line number Diff line change 1
1
# CircleCI jobs are only enabled to on Pull Requests and commits to master branch.
2
2
# "Only build pull requests" enabled in Project's Advanced Settings.
3
3
version : 2.1
4
+
4
5
jobs :
5
6
build_test :
6
7
docker :
83
84
fi
84
85
poetry publish --username=$PYPI_USERNAME --password=$PYPI_PASSWORD
85
86
workflows :
87
+ nightly_build_test :
88
+ triggers :
89
+ - schedule :
90
+ cron : " 0 0 * * *"
91
+ filters :
92
+ branches :
93
+ only :
94
+ - master
95
+ jobs :
96
+ - build_test
86
97
build_test_publish :
87
98
jobs :
88
99
- build_test :
Original file line number Diff line number Diff line change @@ -293,7 +293,7 @@ def test_mixed_pred_upload_async(model_run: ModelRun):
293
293
"job_id" : job .id ,
294
294
"status" : "Completed" ,
295
295
"message" : {
296
- "annotation_upload " : {
296
+ "prediction_upload " : {
297
297
"epoch" : 1 ,
298
298
"total" : 2 ,
299
299
"errored" : 0 ,
@@ -331,7 +331,7 @@ def test_mixed_pred_upload_async_with_error(model_run: ModelRun):
331
331
"job_id" : job .id ,
332
332
"status" : "Completed" ,
333
333
"message" : {
334
- "annotation_upload " : {
334
+ "prediction_upload " : {
335
335
"epoch" : 1 ,
336
336
"total" : 2 ,
337
337
"errored" : 1 ,
You can’t perform that action at this time.
0 commit comments