-
Notifications
You must be signed in to change notification settings - Fork 345
Basic project setup #4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
.gitignore
Outdated
|
|
||
| # Documentation-related | ||
| docs/_build | ||
| /google_appengine/ |
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
| matrix: | ||
| include: | ||
| - python: 3.5 | ||
| env: TOXENV=lint |
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
| env: TOXENV=cover | ||
| cache: | ||
| directories: | ||
| - ${HOME}/.cache |
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
.travis.yml
Outdated
| install: | ||
| - pip install --upgrade tox | ||
| script: | ||
| - tox -e ${TOXENV} |
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
.travis.yml
Outdated
| script: | ||
| - tox -e ${TOXENV} | ||
| notifications: | ||
| email: false |
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
setup.py
Outdated
| install_requires=DEPENDENCIES, | ||
| license='Apache 2.0', | ||
| keywords='google auth oauth client', | ||
| classifiers=[ |
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
| @@ -0,0 +1,49 @@ | |||
| [tox] | |||
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
| pytest-localserver | ||
| urllib3 | ||
| commands = | ||
| py.test --cov=google.auth --cov=google.oauth2 --cov=tests {posargs:tests} |
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
| basepython = python3.5 | ||
| commands = | ||
| py.test --cov=google.auth --cov=google.oauth2 --cov=tests --cov-report= tests | ||
| coverage report --show-missing --fail-under=100 |
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
tox.ini
Outdated
| deps = | ||
| {[testenv]deps} | ||
| sphinx | ||
| commands = sphinx-apidoc -o docs/reference -e --module-first google |
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
|
LGTM, right? |
|
@dhermes I don't know, does it? |
|
Yes. |
Note: the
py27,py34,py35, andcoverenvironments will fail because no tests are being discovered. Once we add the first module all should be kosher.