Skip to content

Commit

Permalink
Merge fe61924 into 9ec91cc
Browse files Browse the repository at this point in the history
  • Loading branch information
Nils Diefenbach committed Nov 23, 2017
2 parents 9ec91cc + fe61924 commit 5d64982
Showing 1 changed file with 32 additions and 6 deletions.
38 changes: 32 additions & 6 deletions .travis.yml
@@ -1,13 +1,13 @@
language: python

python:
- "2.7"
- "3.3"
- "3.4"
- 2.7
- 3.3
- 3.4
# PyPy versions
- "pypy" # PyPy2 2.5.0
- "pypy3" # Pypy3 2.4.0
- "pypy-5.3.1"
- pypy # PyPy2 2.5.0
- pypy3 # Pypy3 2.4.0
- pypy-5.3.1

install:
- pip install pylint pydocstyle
Expand All @@ -21,5 +21,31 @@ script:
- pytest tests
- coverage run --source=pirant setup.py test

jobs:
include:
- stage: Linting
python: 3.6
script: pylint --rcfile=pylint.rc pirant
script: pydocstyle pirant
- stage: Deploy
script: skip
python: 3.6
deploy:
provider: pypi
user: USERNAME
password:
secure: YOUR_ENCRYPTED_PASSWORD
distributions: "bdist_wheel"
on:
tags: true

if: branch = master

stages:
- Linting
- Test
- name: Deploy
if: tag IS present

after_success:
- coveralls

0 comments on commit 5d64982

Please sign in to comment.