Skip to content

Commit c3864f4

Browse files
authored
Merge pull request #32 from textile/master
Merge master changes into develop branch
2 parents 9c6a190 + d629b60 commit c3864f4

3 files changed

Lines changed: 2 additions & 2 deletions

File tree

setup.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
from setuptools import setup, find_packages
22
import os
33
import sys
4+
import pytest
45

56
def get_version():
67
basedir = os.path.dirname(__file__)
@@ -43,6 +44,7 @@ def get_version():
4344
entry_points={'console_scripts': ['textile=textile.__main__:main']},
4445
setup_requires=['pytest-runner'],
4546
tests_require=['pytest', 'pytest-cov'],
47+
cmdclass = {'test': pytest},
4648
include_package_data=True,
4749
zip_safe=False,
4850
)

textile/core.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
#!/usr/bin/env python
21
# -*- coding: utf-8 -*-
32
from __future__ import unicode_literals
43

textile/regex_strings.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
#!/usr/bin/env python
21
# -*- coding: utf-8 -*-
32
from __future__ import unicode_literals
43

0 commit comments

Comments
 (0)