Skip to content

Commit 68cb9d5

Browse files
committed
moving old test file into test module
1 parent baa842d commit 68cb9d5

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -110,11 +110,11 @@ Tests that require a database will run on a separate test database. Make sure th
110110
├── fixtures
111111
├── forms.py
112112
├── migrations
113+
├── test
113114
├── models.py
114115
├── static
115116
├── tables.py
116117
├── templates
117-
├── tests.py
118118
├── urls.py
119119
└── views.py
120120
```

ponder/tests.py ponder/test/tests_OLD.py

+9
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
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+
110
from django.test import TestCase, Client
211
import django
312
django.setup()

0 commit comments

Comments
 (0)