-
Notifications
You must be signed in to change notification settings - Fork 305
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 #127 from DataDog/yann/travis_wo_tox
[test] do not use tox on Travis
- Loading branch information
Showing
7 changed files
with
27 additions
and
50 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,15 +1,14 @@ | ||
sudo: false | ||
language: python | ||
python: | ||
- 3.5 | ||
env: | ||
- TOX_ENV=py27 | ||
- TOX_ENV=pypy | ||
- TOX_ENV=py33 | ||
- TOX_ENV=py34 | ||
- TOX_ENV=py35 | ||
- TOX_ENV=flake8 | ||
- "2.7" | ||
- "pypy" | ||
- "3.3" | ||
- "3.4" | ||
- "3.5" | ||
- "3.6" | ||
install: | ||
- pip install tox | ||
- pip install flake8 | ||
script: | ||
- tox -e $TOX_ENV | ||
- if [[ $TRAVIS_PYTHON_VERSION == '3.5' ]]; then flake8 --max-line-length=100 datadog; fi | ||
- if [[ $TRAVIS_PYTHON_VERSION == '2.7' ]]; then python setup.py test; else python setup.py test -s tests.unit; fi |
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 |
---|---|---|
|
@@ -18,7 +18,7 @@ | |
name="datadog", | ||
version="0.16.0", | ||
install_requires=install_reqs, | ||
tests_require=["tox", "nose", "mock", "six", "pillow"], | ||
tests_require=["nose", "mock"], | ||
packages=[ | ||
'datadog', | ||
'datadog.api', | ||
|
@@ -31,22 +31,23 @@ | |
author_email="[email protected]", | ||
description="The Datadog Python library", | ||
license="BSD", | ||
keywords="datadog data", | ||
url="http://www.datadoghq.com", | ||
keywords="datadog", | ||
url="https://www.datadoghq.com", | ||
entry_points={ | ||
'console_scripts': [ | ||
'dog = datadog.dogshell:main', | ||
'dogwrap = datadog.dogshell.wrap:main', | ||
], | ||
}, | ||
test_suite="nose.collector", | ||
test_suite="tests", | ||
classifiers=[ | ||
"License :: OSI Approved :: BSD License", | ||
"Operating System :: OS Independent", | ||
"Programming Language :: Python :: 2.7", | ||
"Programming Language :: Python :: 3.3", | ||
"Programming Language :: Python :: 3.4", | ||
"Programming Language :: Python :: 3.5", | ||
"Programming Language :: Python :: Implementation :: PyPy" | ||
"Programming Language :: Python :: 3.6", | ||
"Programming Language :: Python :: Implementation :: 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
File renamed without changes.
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