Comment by Evgeny for I managed to get a test run that seems more promising...
We use development version of South right now as there was some issue with a released one, never heard of django-pytest... The workaround looks interesting, but not sure too many hacks can stand on top...
View ArticleAnswer by Jacob Oscarson for Hello,I'm preparing some customizations that...
I managed to get a test run that seems more promising by modifying the `manage.py` of the dummy project with the follow code after the `import` sections: import sys, os if 'DJANGO_SETTINGS_MODULE' not...
View ArticleComment by Jacob Oscarson for The tests can be run this way:python manage.py...
This implies that you have created a project? (I have sources cloned in another directory than my project for experimentation)
View ArticleComment by Jacob Oscarson for The tests can be run this way:python manage.py...
I've created a lab project (calling it 'dev' here) in my cloned directory. When running `python dev/manage.py test askbot` against that I get a long traceback ending like this: `File...
View ArticleComment by Evgeny for The tests can be run this way:python manage.py test...
This error is hard to debug. Can you send me sources of your project? Maybe something is missing in `settings.py` did you use settings.py that comes with askbot as a starting point and then added your...
View ArticleComment by Evgeny for The tests can be run this way:python manage.py test...
hmm, if askbot is in the installed apps, then the tests should run that way, regardless of where the app files are. But if you have issues with the command - like no tests run when you type the command...
View ArticleComment by Evgeny for The tests can be run this way:python manage.py test...
We will look hard into this issue, I actually have a branch with that exact error, I will look again.
View ArticleComment by Jacob Oscarson for The tests can be run this way:python manage.py...
Sure, how can I send you the settings.py file? (Alternatively, I generated it with dummy values using `askbot-setup`, then set the db adapter to `sqlite3` and db to `:memory:` by hand in the...
View ArticleComment by Joseph for The tests can be run this way:python manage.py test...
I have this error too: SettingNotSet: ("Startup error, couldn't load EXTERNAL_KEYS.RECAPTCHA_SECRET", None)
View ArticleAnswer by Evgeny for Hello,I'm preparing some customizations that might go a...
The tests can be run this way: python manage.py test askbot
View ArticleComment by Jacob Oscarson for Hello,I'm preparing some customizations that...
I did get it to run a bit further, using [this commit](https://github.com/Plexical/askbot-devel/commit/009083205057f8581f0e3a25bcd846759b9d30a5).
View ArticleComment by Evgeny for Hello,I'm preparing some customizations that might go a...
Try using on-disk database, not `:memory:` and before running the tests do `python manage.py syncdb --migrate`, I've just tried your setup and found out that with in-memory database the test runner...
View ArticleRunning Askbot test suites
Hello, I'm preparing some customizations that might go a bit deeper than skin customization. Therefore I'm investigating the tests found in `askbot/tests`. However, I don't find any obvious way to run...
View Article