aboutsummaryrefslogtreecommitdiff
path: root/.gitignore
AgeCommit message (Collapse)Author
2016-08-09Migrate test runner to py.testPat Ferate
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
2015-12-04Add Django Util With DecoratorBill Prin
Adds a submodule that provides views, decorator, and signals to help a Django web application complete OAuth2 authorization.
2015-08-24Adding htmlcov/ directory to gitignore.Danny Hermes
This directory is HTML output generated by $ coverage html and can be used to find things such as branch misses in tests.
2015-07-10ignore PyCharm config filesFrederik Creemers
2015-05-01Updating system tests to succeed on Travis.Danny Hermes
Adds files which have been encrypted by Travis and decrypts those files in scripts/run_system_tests.sh using a key and initialization vector (iv) provided by the Travis environment for this project.
2015-04-13Adding system tests to make sure token exchange works as expected.Danny Hermes
- Updates CONTRIBUTING.md to explain how to set-up and run these tests. - Requires a version of httplib2 that has not been released on PyPI yet in order to work on Python 3. - Simply creates 3 different token types (JSON key for svc. acct., P12 key for svc. acct., JSON key for user acct.) and then authorizes an httplib2.Http object to hit the USERINFO API.
2015-01-05Automate doc creation.Craig Citro
This adds several pieces for doc creation: * a script to automate fetching the GAE SDK, * updates `doc-build` to fetch the SDK and use sphinx, * a dummy `django_settings` module where needed, * a `tox` target to build, and * use of `ghp-import` to push the changes into the gh-pages branch.
2014-12-18Switch doc building from epydoc to Sphinx.Craig Citro
This adds sphinx-based configs for doc generation, along with some templates and a new `docs/index.rst`. Still to come: updating the doc build script and merging Danny's autodoc changes.
2014-12-12First pass at coveralls integration.Craig Citro
This adds `cover` and `coveralls` envs in `tox`, and a call to `coveralls` in `.travis.yml`. Settling for 60% coverage for now.
2014-12-05Updating makefile and gitignore for building docs.Danny Hermes
2014-06-24Add two more .gitignore entries.Craig Citro
2014-05-04Add a simple .gitignore.Craig Citro