-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #10 from akb89/develop
Develop
- Loading branch information
Showing
4 changed files
with
36 additions
and
14 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
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 @@ | ||
language: python | ||
python: | ||
- "3.5" | ||
- "3.6" | ||
|
||
# Enable 3.7 without globally enabling sudo and dist: xenial for other build jobs | ||
matrix: | ||
include: | ||
- python: 3.7 | ||
dist: xenial | ||
sudo: true | ||
|
||
install: | ||
- python setup.py -q install | ||
- pip install pylint pydocstyle pytest pytest-cov coveralls | ||
|
||
script: | ||
- python -m pytest --cov=pyfn tests/ | ||
- pylint pyfn | ||
- pydocstyle pyfn | ||
|
||
after_success: | ||
- coveralls |
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 |
---|---|---|
|
@@ -16,7 +16,7 @@ | |
author_email='[email protected]', | ||
long_description=long_description, | ||
long_description_content_type='text/markdown', | ||
version='1.2.2', | ||
version='1.2.3', | ||
url='https://gitlab.com/akb89/pyfn', | ||
download_url='https://pypi.org/project/pyfn/#files', | ||
license='MIT', | ||
|