diff options
| -rw-r--r-- | .travis.yml | 16 | ||||
| -rw-r--r-- | setup.py | 6 | ||||
| -rw-r--r-- | test/__init__.py | 0 | ||||
| -rwxr-xr-x[-rw-r--r--] | test/test.py | 0 |
4 files changed, 19 insertions, 3 deletions
diff --git a/.travis.yml b/.travis.yml index e2246f6..619d195 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,8 +1,22 @@ language: python + python: - "2.6" - "2.7" - "3.2" - "3.3" + - "3.4" + - "3.5" + - "nightly" + +install: + - pip install coveralls + - pip install codecov + - python setup.py install + script: - - python test.py + - coverage run setup.py test + +after_success: + - coveralls + - codecov @@ -1,5 +1,7 @@ -from setuptools import setup, Extension -#from distutils.core import setup, Extension +#!/usr/bin/env python +# -*- coding: utf-8 -*- + +from setuptools import setup setup(name='python-magic', description='File type identification using libmagic', diff --git a/test/__init__.py b/test/__init__.py new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/test/__init__.py diff --git a/test/test.py b/test/test.py index b74a25f..b74a25f 100644..100755 --- a/test/test.py +++ b/test/test.py |
