Changeset - e8e20dd6d399
[Not reviewed]
1 3 0
Christopher Neugebauer - 8 years ago 2016-04-27 00:33:44
chrisjrn@gmail.com
Coverage, Migrations.
4 files changed with 22 insertions and 27 deletions:
0 comments (0 inline, 0 general)
.gitignore
Show inline comments
...
 
@@ -5,2 +5,2 @@ _build/
 
dev.db
 

	
 
.coverage
pinaxcon/registrasion/migrations/0001_initial.py
Show inline comments
 
# -*- coding: utf-8 -*-
 
# Generated by Django 1.9.2 on 2016-04-01 10:05
 
# Generated by Django 1.9.2 on 2016-04-27 00:27
 
from __future__ import unicode_literals
...
 
@@ -13,3 +13,3 @@ class Migration(migrations.Migration):
 
    dependencies = [
 
        ('registrasion', '0011_auto_20160401_0943'),
 
        ('registrasion', '0001_initial'),
 
    ]
...
 
@@ -33,2 +33,9 @@ class Migration(migrations.Migration):
 
        ),
 
        migrations.CreateModel(
 
            name='DemoPayment',
 
            fields=[
 
                ('paymentbase_ptr', models.OneToOneField(auto_created=True, on_delete=django.db.models.deletion.CASCADE, parent_link=True, primary_key=True, serialize=False, to='registrasion.PaymentBase')),
 
            ],
 
            bases=('registrasion.paymentbase',),
 
        ),
 
    ]
pinaxcon/registrasion/migrations/0002_demopayment.py
Show inline comments
 
deleted file
pinaxcon/settings.py
Show inline comments
...
 
@@ -165,2 +165,5 @@ INSTALLED_APPS = [
 
    "pinaxcon.registrasion",
 

	
 
    #testing
 
    "django_nose",
 
]
...
 
@@ -223 +226,10 @@ PINAX_BOXES_HOOKSET = "pinaxcon.hooks.PinaxBoxesHookSet"
 
ATTENDEE_PROFILE_FORM = "pinaxcon.registrasion.forms.ProfileForm"
 

	
 
# Use nose to run all tests
 
TEST_RUNNER = 'django_nose.NoseTestSuiteRunner'
 

	
 
# Tell nose to measure coverage on the 'foo' and 'bar' apps
 
NOSE_ARGS = [
 
    '--with-coverage',
 
    '--cover-package=registrasion.controllers,registrasion.models',
 
]
0 comments (0 inline, 0 general)