pallets-eco / blinker

A fast Python in-process signal/event dispatching system.

Home Page:https://blinker.readthedocs.io

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Continuous Integration

femtotrader opened this issue · comments

Hello,

It will be nice to add Continuous Integration.
Please go to https://travis-ci.org/ and enable your blinker project

add a .travis.yml file with

language: python
python:
  - "2.7"
  - "3.2"
  - "3.3"
  - "3.4"

# command to install dependencies
install:
  - "pip install ."

# command to run tests
script: nosetests

then you can push your code.

Kind regards

Based on PRs, travisci is set up.

WARNING: We were unable to find a .travis.yml file. This may not be what you
want. Build will be run with default settings.

A .travis.yml file at root directory is necessary because it seems that Travis consider by default Ruby projects... not Python.

Adding a badge will be also a good idea

Build Status

using [![Build Status](https://travis-ci.org/jek/blinker.svg?branch=master)](https://travis-ci.org/jek/blinker)

Travis is now setup, thanks!