Files
deb-python-oauth2client/.gitignore
Pat Ferate c359c401e7 Migrate test runner to py.test
Migrating test runner from `unittest2`/`nose` to `pytest`.
The pytest runner is also compatible with both unittest and nose tests.
Some of the benefits of PyTest include:
    * using plain asserts
    * function-based fixtures instead of setUp and tearDown
    * no strange camelCase methods
2016-08-09 14:15:13 -07:00

32 lines
403 B
Plaintext

# Build artifacts
*.py[cod]
oauth2client.egg-info/
build/
dist/
# Documentation-related
docs/_build
/google_appengine/
# Test files
.tox/
.cache/
# Django test database
db.sqlite3
# Coverage files
.coverage
coverage.xml
nosetests.xml
htmlcov/
# Files with private / local data
scripts/local_test_setup
tests/data/key.json
tests/data/key.p12
tests/data/user-key.json
# PyCharm configuration:
.idea