diff options
| author | Adam Hupp <adam@hupp.org> | 2015-11-06 10:41:47 -0800 |
|---|---|---|
| committer | Adam Hupp <adam@hupp.org> | 2015-11-06 10:41:47 -0800 |
| commit | bfbc82040a6e576f4861baf02fa01df12a555e05 (patch) | |
| tree | c664ecf624c2fb0bb40db1fa3967349df3376fe1 | |
| parent | 3069a4a01a9551d654460214b40123bec2bc6592 (diff) | |
| parent | 505d499185062aa42d1da19e3d7c1dc6b16b3afd (diff) | |
| download | python-magic-bfbc82040a6e576f4861baf02fa01df12a555e05.tar.gz | |
Merge pull request #92 from Rafiot/up_travis
Fix travis config
| -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 |
