-
-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
py 35+ meta meta
- Loading branch information
Showing
9 changed files
with
65 additions
and
135 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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
image: | ||
- Visual Studio 2017 | ||
- Ubuntu | ||
- Ubuntu1804 | ||
|
||
stack: python 3 | ||
|
||
|
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,20 @@ | ||
[run] | ||
cover_pylib = false | ||
omit = | ||
/home/travis/virtualenv/* | ||
*/site-packages/* | ||
*/bin/* | ||
|
||
[report] | ||
exclude_lines = | ||
pragma: no cover | ||
def __repr__ | ||
except RuntimeError | ||
except NotImplementedError | ||
except ImportError | ||
except FileNotFoundError | ||
except CalledProcessError | ||
logging.warning | ||
logging.error | ||
logging.critical | ||
if __name__ == .__main__.: |
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,27 +1,37 @@ | ||
language: python | ||
group: travis_latest | ||
dist: xenial | ||
|
||
git: | ||
depth: 3 | ||
quiet: true | ||
|
||
python: | ||
- 3.7 | ||
- 3.6 | ||
|
||
os: | ||
- linux | ||
|
||
- 3.5 | ||
|
||
matrix: | ||
include: | ||
- os: linux | ||
python: 3.7 | ||
install: pip install -e .[tests,cov] | ||
script: | ||
- flake8 | ||
- mypy . --ignore-missing-imports | ||
after_success: | ||
- pytest --cov | ||
- coveralls | ||
- os: osx | ||
language: sh | ||
install: pip3 install -e .[tests] | ||
- os: windows | ||
language: sh | ||
before_install: | ||
- choco install python3 | ||
- export PATH="/c/Python37:/c/Python37/Scripts:$PATH" | ||
|
||
install: pip install -e .[tests] | ||
|
||
script: | ||
- pytest -rsv | ||
- flake8 | ||
- mypy . --ignore-missing-imports | ||
|
||
after_success: | ||
- if [[ $TRAVIS_PYTHON_VERSION == 3.6* ]]; then | ||
pytest --cov --cov-config=setup.cfg; | ||
coveralls; | ||
fi | ||
script: pytest -rsv | ||
|
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,2 @@ | ||
include LICENSE | ||
include *.py |
This file was deleted.
Oops, something went wrong.
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
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