You'll need to play with the task service stub, specifically, setting the location of the queue.yaml file in your local development environment. Something like:
taskqueue_stub = apiproxy_stub_map.apiproxy.GetStub( 'taskqueue' ) taskqueue_stub._root_path = os.path.join( os.path.dirname( __file__ ), '..' ) in setUp should suffice. H On May 10, 6:29 pm, John Gardner <[email protected]> wrote: > Bump, same here. Is there some bootstrap config that needs to be done > on the development server to have custom queues available? > > On Apr 16, 5:33 pm, Jay <[email protected]> wrote: > > > Hello all. I get UnknownQueueError when I use a custom queue (define > > in queue.yaml) in unit tests. The queue works fine when running my > > app. Any known issue there or suggestions? > > > -- Jay > > > -- > > You received this message because you are subscribed to the Google Groups > > "Google App Engine" group. > > To post to this group, send email to [email protected]. > > To unsubscribe from this group, send email to > > [email protected]. > > For more options, visit this group > > athttp://groups.google.com/group/google-appengine?hl=en. > > -- > You received this message because you are subscribed to the Google Groups > "Google App Engine" group. > To post to this group, send email to [email protected]. > To unsubscribe from this group, send email to > [email protected]. > For more options, visit this group > athttp://groups.google.com/group/google-appengine?hl=en. -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-appengine?hl=en.
