this chnage setup up unit testing with stestr as the test runner and django.test.SimpleTestCase as the base of our tests. This avoid the depency on manage.py or run_tests.sh Change-Id: Ib39d20861928a3052eaa9e9adc3f984ae20aad03
9 lines
113 B
Python
9 lines
113 B
Python
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
from django import test
|
|
|
|
|
|
class TestCase(test.SimpleTestCase):
|
|
pass
|