Commit 68cb9d5 1 parent baa842d commit 68cb9d5 Copy full SHA for 68cb9d5
File tree 2 files changed +10
-1
lines changed
2 files changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -110,11 +110,11 @@ Tests that require a database will run on a separate test database. Make sure th
110
110
├── fixtures
111
111
├── forms.py
112
112
├── migrations
113
+ ├── test
113
114
├── models.py
114
115
├── static
115
116
├── tables.py
116
117
├── templates
117
- ├── tests.py
118
118
├── urls.py
119
119
└── views.py
120
120
```
Original file line number Diff line number Diff line change
1
+ '''
2
+ These are the old/default tests that were database dependent that required DB creation rights to be able to
3
+ create a test database to run these tests against. Marking this file as _OLD to disable running these as part of the CI
4
+ pipeline as our current free hosting setup does not allow for DB creation.
5
+
6
+ See other tests inside this module for non DB specific unit tests.
7
+ '''
8
+
9
+
1
10
from django .test import TestCase , Client
2
11
import django
3
12
django .setup ()
You can’t perform that action at this time.
0 commit comments