Skip to content

Commit

Permalink
Merge b0f5aa1 into bbb8cc2
Browse files Browse the repository at this point in the history
  • Loading branch information
juancarlostong committed Jan 7, 2019
2 parents bbb8cc2 + b0f5aa1 commit dc8dbd2
Showing 1 changed file with 14 additions and 3 deletions.
17 changes: 14 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
language: python

python:
- "2.7"
- "3.4"
Expand All @@ -7,6 +8,10 @@ python:
- "3.7"
- "pypy"
- "pypy3"

env:
- SKIP=false

install: "pip install -r requirements/core.txt;pip install -r requirements/test.txt"
before_script: "pep8"
addons:
Expand All @@ -17,12 +22,14 @@ after_success:

# Integration tests need to run first to reset the PR build status to pending
stages:
- 'Integration tests'
- 'Test'
- name: 'Trigger Integration tests'
if: env(SKIP) = true
- name: 'Test'
if: env(SKIP) = false

jobs:
include:
- stage: 'Integration tests'
- stage: 'Trigger Integration tests'
env: SDK=python
language: python
before_install: skip
Expand All @@ -33,3 +40,7 @@ jobs:
script:
- "ci/trigger_fullstack-sdk-compat.sh"
after_success: skip

- stage: 'Test'
if: TRAVIS_PYTHON_VERSION =~ /^3.7/
dist: xenial

0 comments on commit dc8dbd2

Please sign in to comment.