-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Miroslav Shubernetskiy
committed
Jul 28, 2017
1 parent
da3204c
commit 2adb7a7
Showing
10 changed files
with
60 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
{ | ||
"exclude": [ | ||
"*/docs/conf.py", | ||
"*/.tox" | ||
], | ||
"groups": [ | ||
{ | ||
"type": "stdlib" | ||
}, | ||
{ | ||
"type": "remainder" | ||
}, | ||
{ | ||
"type": "packages", | ||
"packages": [ | ||
"skipnose" | ||
] | ||
}, | ||
{ | ||
"type": "local" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
language: python | ||
|
||
python: | ||
- "3.4" | ||
- "3.6" | ||
- "2.7" | ||
- "pypy" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
-r requirements.txt | ||
coverage | ||
flake8 | ||
importanize | ||
mock | ||
rednose | ||
tox |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,5 @@ | ||
[bdist_wheel] | ||
universal=1 | ||
|
||
[flake8] | ||
exclude = .tox | ||
exclude=.tox |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,13 @@ | ||
# -*- coding: utf-8 -*- | ||
from __future__ import unicode_literals, print_function | ||
|
||
from .skipnose import SkipNose # noqa | ||
from __future__ import print_function, unicode_literals | ||
|
||
|
||
__author__ = 'Miroslav Shubernetskiy' | ||
__email__ = '[email protected]' | ||
__version__ = '0.3.0' | ||
__version__ = '0.3.1' | ||
|
||
|
||
try: | ||
from .skipnose import SkipNose # noqa | ||
except ImportError: | ||
pass # probably during install |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
[tox] | ||
envlist = py27, py34, pypy | ||
envlist = py27, py36, pypy | ||
|
||
[testenv] | ||
setenv = | ||
|