File tree Expand file tree Collapse file tree 2 files changed +15
-6
lines changed Expand file tree Collapse file tree 2 files changed +15
-6
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 :
@@ -38,15 +39,13 @@ jobs:
38
39
poetry run coverage run --include=nucleus/* -m pytest -s -v --junitxml=test_results/junit.xml
39
40
poetry run coverage report
40
41
poetry run coverage html
41
-
42
42
- store_test_results :
43
43
path : htmlcov
44
-
45
44
- store_test_results :
46
45
path : test_results
47
-
48
46
- store_artifacts :
49
- path : test_results
47
+ path : test_results
48
+
50
49
pypi_publish :
51
50
docker :
52
51
- image : cimg/python:3.6
83
82
fi
84
83
poetry publish --username=$PYPI_USERNAME --password=$PYPI_PASSWORD
85
84
workflows :
85
+ nightly_build_test :
86
+ triggers :
87
+ - schedule :
88
+ cron : " 0 0 * * *"
89
+ filters :
90
+ branches :
91
+ only :
92
+ - master
93
+ jobs :
94
+ - build_test
86
95
build_test_publish :
87
96
jobs :
88
97
- 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