Skip to content

Commit

Permalink
Merge pull request #5 from jnkm/hello
Browse files Browse the repository at this point in the history
Hello
  • Loading branch information
jnkm authored Aug 2, 2018
2 parents 9de513b + 229de5d commit 91a7077
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 15 deletions.
23 changes: 8 additions & 15 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,26 +1,19 @@
language: python
python:
- '3.4'
- '3.5'
- '3.6'
- '3.4'
- '3.5'
install:
- pip install -r requirements.txt
- pip install -r test_requirements.txt
- pip install -r requirements.txt
- pip install -r test_requirements.txt
script:
- nosetests --with-coverage test/*

jobs:
include:
- stage: unit tests
script:
- nosetests --with-coverage test/unit/
after_success:
- codecov
- stage: integration tests
script:
- nosetests --with-coverage test/integration/
after_success:
- codecov
- stage: release
python: '3.6'
after_success:
- codecov
deploy:
provider: pypi
server: https://test.pypi.org/legacy/ # Remove for deployment to official PyPi repo
Expand Down
11 changes: 11 additions & 0 deletions test/integration/test_me.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
from unittest import TestCase

import hello_world
import untested

class MyTestCase(TestCase):
def test_pass(self):
return

def test_qwerty(self):
pass
File renamed without changes.

0 comments on commit 91a7077

Please sign in to comment.