We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
For some reason manage.py jenkins ignores the --keepdb option. It deletes my database...
manage.py jenkins
--keepdb
This is the command i'm running: portal and solr_front are apps inside my project.
portal
solr_front
# Run tests with coverage python manage.py jenkins portal solr_front --keepdb --enable-coverage
When I run the manage.py test, it keeps my database as expected.
manage.py test
# This keeps my DB python manage.py test portal solr_front --keepdb
This is how my DATABASES is configured
DATABASES = { 'default': { 'ENGINE': 'django.db.backends.mysql', 'NAME': 'dev', 'TEST_NAME': 'dev', 'USER': 'user', 'PASSWORD': '***********', 'HOST': '192.168.0.8', 'PORT': '', } }
It's is the versions i'm running
Python 2.7.15 Django==1.8.11 django-jenkins==0.110.0
The text was updated successfully, but these errors were encountered:
No branches or pull requests
For some reason
manage.py jenkins
ignores the--keepdb
option. It deletes my database...This is the command i'm running:
portal
andsolr_front
are apps inside my project.When I run the
manage.py test
, it keeps my database as expected.This is how my DATABASES is configured
It's is the versions i'm running
The text was updated successfully, but these errors were encountered: