File tree Expand file tree Collapse file tree 2 files changed +20
-1
lines changed Expand file tree Collapse file tree 2 files changed +20
-1
lines changed Original file line number Diff line number Diff line change 40
40
- run : pip install flit
41
41
- run : flit build
42
42
- run : flit publish
43
+ test-nightly :
44
+ docker :
45
+ - image : circleci/python:3.6
46
+ steps :
47
+ - checkout
48
+ - install-deps
49
+ - run : tox
50
+ - run : flit build
43
51
44
52
workflows :
45
53
pull_request :
@@ -59,3 +67,14 @@ workflows:
59
67
only : /v[0-9]+(\.[0-9]+)*/
60
68
branches :
61
69
ignore : /.*/
70
+ nightly :
71
+ triggers :
72
+ - schedule :
73
+ cron : " 0 0 * * *"
74
+ filters :
75
+ branches :
76
+ only :
77
+ - master
78
+ jobs :
79
+ - test-nightly :
80
+ context : opensource
Original file line number Diff line number Diff line change 1
1
# async-task-queue
2
2
3
- [ ![ CircleCI] ( https://circleci.com/gh/NarrativeScience/async-task-queue/tree/master.svg?style=shield )] ( https://circleci.com/gh/NarrativeScience/async-task-queue/tree/master ) [ ![ ] ( https://img.shields.io/pypi/v/async-task-queue.svg )] ( https://pypi.org/pypi/async-task-queue/ ) [ ![ License] ( https://img.shields.io/badge/License-BSD%203--Clause-blue.svg )] ( https://opensource.org/licenses/BSD-3-Clause )
3
+ [ ![ CircleCI] ( https://circleci.com/gh/NarrativeScience/async-task-queue/tree/master.svg?style=shield )] ( https://circleci.com/gh/NarrativeScience/async-task-queue/tree/master ) [ ![ ] ( https://img.shields.io/pypi/v/async-task-queue.svg )] ( https://pypi.org/pypi/async-task-queue/ ) [ ![ License] ( https://img.shields.io/badge/License-BSD%203--Clause-blue.svg )] ( https://opensource.org/licenses/BSD-3-Clause )
4
4
5
5
In-memory FIFO queue for concurrent task execution. Used to execute tasks concurrently with optional control (via semaphore) over the max number of tasks running at the same time.
6
6
You can’t perform that action at this time.
0 commit comments