Skip to content

Commit

Permalink
spec-first#33 update setup.py and travis.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
jmcs committed Jul 29, 2015
1 parent e27cc06 commit cd75622
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
language: python
python:
- "pypy"
- "2.7"
- "3.4"
install:
- pip install -e .
Expand Down
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,10 @@
from setuptools import setup, find_packages
from setuptools.command.test import test as TestCommand

version = '0.7.6'
version = '0.8'


class PyTest(TestCommand):

def initialize_options(self):
TestCommand.initialize_options(self)
self.cov = None
Expand All @@ -23,6 +22,7 @@ def finalize_options(self):

def run_tests(self):
import pytest

errno = pytest.main(self.pytest_args)
sys.exit(errno)

Expand All @@ -41,6 +41,7 @@ def run_tests(self):
cmdclass={'test': PyTest},
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
Expand Down

0 comments on commit cd75622

Please sign in to comment.