Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/garethr/appengine-testrunner
A pyunit testrunner for Google App Engine inspired by the Django test runner
https://github.com/garethr/appengine-testrunner
Last synced: 28 days ago
JSON representation
A pyunit testrunner for Google App Engine inspired by the Django test runner
- Host: GitHub
- URL: https://github.com/garethr/appengine-testrunner
- Owner: garethr
- Created: 2008-11-09T13:32:56.000Z (about 16 years ago)
- Default Branch: master
- Last Pushed: 2008-12-09T09:20:13.000Z (about 16 years ago)
- Last Synced: 2024-12-11T15:56:11.213Z (about 1 month ago)
- Language: Python
- Homepage:
- Size: 78.1 KB
- Stars: 4
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README
Awesome Lists containing this project
README
PyUnit Test runner suitable for use with Google App Engine.
Drop this file into your project directory, create a directory called tests in the same
directory and create a blank file in that called __init__.py
You directory structure should be something like this:- root
- app.yaml
- main.py
- test.py
- tests
- __init__.py
You should now be able to just drop valid PyUnit test cases into the tests
directory and they should be run when you run test.py via the command line.