-
Notifications
You must be signed in to change notification settings - Fork 4
[WIP] Run multiple Django and Python version's tests on Travis-CI #1
New issue
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
base: master
Are you sure you want to change the base?
Conversation
| # get the pk value on instance | ||
| if field.rel: | ||
| rel_model = field.rel.to | ||
| if field.remote_field: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Field.rel and Field.remote_field.to are removed on Django 2.0
| """ | ||
| def _get_invalidation_models(self): | ||
| return [self.model] + self.rel_models.keys() | ||
| return [self.model] + list(self.rel_models) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| text = models.CharField(max_length=50) | ||
|
|
||
|
|
||
| class ModelB(models.Model): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
flash.tests module does not required in flashpackage.
So its removed from package.
TODO
__abstractmethods__?)