Skip to content

Commit 48bb817

Browse files
committed
Add Travis integration
1 parent 4afe59e commit 48bb817

File tree

3 files changed

+23
-4
lines changed

3 files changed

+23
-4
lines changed

.travis.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
language: python
2+
3+
os:
4+
- linux
5+
6+
python:
7+
- 3.5
8+
9+
install:
10+
- "pip install --no-binary=:all: cython"
11+
- make
12+
13+
script:
14+
- make test

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ all: clean compile
55

66

77
clean:
8-
rm -fdr dist/
9-
rm -fdr uvloop/*.c uvloop/*.html uvloop/*.so build *.egg-info
10-
rm -fdr uvloop/handles/*.html uvloop/includes/*.html
8+
rm -fr dist/
9+
rm -fr uvloop/*.c uvloop/*.html uvloop/*.so build *.egg-info
10+
rm -fr uvloop/handles/*.html uvloop/includes/*.html
1111
find . -name '__pycache__' | xargs rm -rf
1212

1313

README.rst

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,13 @@
1+
.. image:: https://travis-ci.org/MagicStack/uvloop.svg?branch=master
2+
:target: https://travis-ci.org/MagicStack/uvloop
3+
4+
15
An implementation of asyncio-compatible event loop on top of libuv.
26
This is a research prototype, do not use it in production.
37

48

5-
# Build Instructions
9+
Build Instructions
10+
------------------
611

712
You'll need `Cython` and Python 3.5. The best way is to create
813
a virtual env, so that you'll have `cython` and `python` commands

0 commit comments

Comments
 (0)