Renamed TestPillarServer to PillarTestServer

TestXXX classes are seen as unit tests by py.test, so anything that's not
a unit test should not be called TestXXX.
This commit is contained in:
Sybren A. Stüvel 2016-08-31 11:29:16 +02:00
parent 54bc0e87ce
commit a0cc76259e

View File

@ -52,9 +52,9 @@ BLENDER_ID_USER_RESPONSE = {'status': 'success',
'token_expires': 'Mon, 1 Jan 2018 01:02:03 GMT'}
class TestPillarServer(pillar.PillarServer):
class PillarTestServer(pillar.PillarServer):
def _load_flask_config(self):
super(TestPillarServer, self)._load_flask_config()
super(PillarTestServer, self)._load_flask_config()
pillar_config_file = os.path.join(MY_PATH, 'config_testing.py')
self.config.from_pyfile(pillar_config_file)
@ -70,7 +70,7 @@ class TestPillarServer(pillar.PillarServer):
class AbstractPillarTest(TestMinimal):
pillar_server_class = TestPillarServer
pillar_server_class = PillarTestServer
def setUp(self, **kwargs):
eve_settings_file = os.path.join(MY_PATH, 'eve_test_settings.py')