Tagged Questions

4
votes
1answer
217 views

Getting the primary key (id) in fixture (Python, SQLAlchemy)

I'm using fixture to test a Pylons app, but I stumbled upon a problem. Let's say I have such data set: class CompanyData(DataSet): class test_company: company_full_name = u'Firma Tęst' ...
2
votes
2answers
595 views

cannot dump data by using python ./manage.py dumpdata app

I crated an app in Django project. For testing purpose, I would like to create fixture files. I found that I can dump my database in order to create fixture automatically if I already has data. I want ...
2
votes
3answers
325 views

Importing fixtures with foreign keys and SQLAlchemy?

I've been experimenting with using fixture to load test data sets into my Pylons / PostgreSQL app. This works great except that it fails to properly create foreign keys if they reference an auto ...
2
votes
1answer
358 views

Fixtures for Google App Engine

Are there any Python tools to create fixtures on Google App Engine? I tried Fixture(http://farmdev.com/projects/fixture/). It is the most awesome tool I have come across. I love the clean approach and ...
1
vote
2answers
89 views

formatting string output with linebreaks and tabs in Python?

Im trying to extract some data from a large batch of files and convert them to a specific (JSON) format for importing into a database using Django Fixtures I've been able to get this far: '{ {\n ...
1
vote
1answer
51 views

Importing data from scanned text into Django as YAML fixture or SQL

I'm setting up a simple Django app -- a quiz. The questions and answers come from printed sample tests that have been scanned, OCR'd and parsed. I've parsed them into Python objects like so: class ...
1
vote
1answer
175 views

Testing cherrypy with nose/fixture/webtest (amidoinitrite)

I am developing a CherryPy application and I want to write some automated tests for it. I chose to use nosetests for it. The application uses sqlalchemy as db backend so I need to use fixture package ...
1
vote
3answers
205 views

initial_data fixture management in django

The django projet I'm working on has a ton of initial_data fixture data. It seems by default the only way to have data load automatically is to have a file in your app folder called fixtures, and the ...
0
votes
2answers
317 views

why python nose unittest teardown fixture failed

I'm using nose test framework. When running a test module, the teardown function defined in it failed. the error raised says the fixture is locked by another process. here is my test module, ...