First time here? Check out the FAQ!
1

How to run Askbot Tests

  • retag add tags

I have the latest version of askbot from github in a directory called "askbot-devel". I've then run python setup.py develop and the "askbot-setup.exe" to create the site ("askbot-site") alongside the askbot-devel directory.

If I navigate to askbot-site and run

./manage.py test

or

./manage.py test askbot

It ends with

Ran 0 tests in 0.000s

Python 2.7.11, Django 1.8.13

Apologies if I'm missing the obvious.

powlo's avatar
260
powlo
asked 2016-06-02 13:18:51 -0500
edit flag offensive 0 remove flag close merge delete

Comments

add a comment see more comments

1 Answer

0

With Django >=1.8 tests can be run via providing path to the tests:

python manage.py test askbot.tests #path can be more specific, if desired.
Evgeny's avatar
13.2k
Evgeny
answered 2016-06-13 05:51:53 -0500
edit flag offensive 0 remove flag delete link

Comments

add a comment see more comments