Skip to content

Commit 759123c

Browse files
authored
Add nightly test build (#5)
1 parent ed0fe18 commit 759123c

File tree

2 files changed

+20
-1
lines changed

2 files changed

+20
-1
lines changed

.circleci/config.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,14 @@ jobs:
4040
- run: pip install flit
4141
- run: flit build
4242
- 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
4351

4452
workflows:
4553
pull_request:
@@ -59,3 +67,14 @@ workflows:
5967
only: /v[0-9]+(\.[0-9]+)*/
6068
branches:
6169
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

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# async-task-queue
22

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)
44

55
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.
66

0 commit comments

Comments
 (0)