~oubiwann/txzmq/trunk

« back to all changes in this revision

Viewing changes to .travis.yml

  • Committer: Andrey Smirnov
  • Date: 2015-08-14 14:34:33 UTC
  • mfrom: (141.2.8)
  • Revision ID: git-v1:28435715afdb6f6cbd8227b63253675a9da2d67b
Merge pull request #63 from tisdall/py3k

Py3k support

Show diffs side-by-side

added added

removed removed

Lines of Context:
4
4
    - 2.6
5
5
    - 2.7
6
6
    - 3.3
 
7
    - 3.4
7
8
    - pypy
 
9
    - pypy3
8
10
env:
9
11
    - REACTOR=select
10
12
    - REACTOR=epoll
15
17
install:
16
18
    - pip install -r requirements.txt
17
19
script:
18
 
    - coverage run $VIRTUAL_ENV/bin/trial --reactor=$REACTOR txzmq
 
20
    - >-
 
21
        [ ! -f $VIRTUAL_ENV/bin/trial ] || coverage run $VIRTUAL_ENV/bin/trial --reactor=$REACTOR txzmq
 
22
    - >-
 
23
        [ -f $VIRTUAL_ENV/bin/trial ] || nosetests
19
24
    - pep8 --repeat txzmq
20
25
    - pyflakes txzmq
21
26
    - python examples/integration_test.py
26
31
        - me@smira.ru
27
32
matrix:
28
33
    allow_failures:
29
 
        - python: 3.3
30
34
        - python: pypy
 
35
        - python: pypy3