Skip to content

Commit 9a1cc45

Browse files
committed
Circle CI
1 parent 031d912 commit 9a1cc45

3 files changed

Lines changed: 31 additions & 1 deletion

File tree

‎.circleci/config.yml‎

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
version: 2.1
2+
3+
orbs:
4+
python: cjw296/python-ci@2.1
5+
6+
common: &common
7+
jobs:
8+
9+
- python/pip-run-tests:
10+
matrix:
11+
parameters:
12+
image:
13+
- circleci/python:2.7
14+
- circleci/python:3.6
15+
- circleci/python:3.9
16+
17+
workflows:
18+
push:
19+
<<: *common
20+
periodic:
21+
<<: *common
22+
triggers:
23+
- schedule:
24+
cron: "0 0 11 * *"
25+
filters:
26+
branches:
27+
only: master

‎README.md‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
[![Build Status](https://travis-ci.org/python-excel/xlrd.svg?branch=master)](https://travis-ci.org/python-excel/xlrd)
1+
[![Build Status](https://circleci.com/gh/python-excel/xlrd/tree/master.svg?style=shield)](https://circleci.com/gh/python-excel/xlrd/tree/master)
22
[![Coverage Status](https://coveralls.io/repos/github/python-excel/xlrd/badge.svg?branch=master)](https://coveralls.io/github/python-excel/xlrd?branch=master)
33
[![Documentation Status](https://readthedocs.org/projects/xlrd/badge/?version=latest)](http://xlrd.readthedocs.io/en/latest/?badge=latest)
44
[![PyPI version](https://badge.fury.io/py/xlrd.svg)](https://badge.fury.io/py/xlrd)

‎setup.py‎

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,4 +40,7 @@
4040
'Topic :: Software Development :: Libraries :: Python Modules',
4141
],
4242
python_requires=">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*",
43+
extras_require=dict(
44+
test=['pytest', 'pytest-cov'],
45+
)
4346
)

0 commit comments

Comments
 (0)