Fix the tests with the new license data.
This commit is contained in:
parent
8e6328a5f0
commit
4c1538ca90
1 changed files with 4 additions and 0 deletions
|
@ -1,3 +1,5 @@
|
||||||
|
from datetime import datetime, timedelta
|
||||||
|
|
||||||
from config import DefaultConfig
|
from config import DefaultConfig
|
||||||
from test.testlogs import TestBuildLogs
|
from test.testlogs import TestBuildLogs
|
||||||
|
|
||||||
|
@ -34,4 +36,6 @@ class TestConfig(DefaultConfig):
|
||||||
SUPER_USERS = ['devtable']
|
SUPER_USERS = ['devtable']
|
||||||
|
|
||||||
LICENSE_USER_LIMIT = 500
|
LICENSE_USER_LIMIT = 500
|
||||||
|
LICENSE_EXPIRATION = datetime.now() + timedelta(weeks=520)
|
||||||
|
LICENSE_EXPIRATION_WARNING = datetime.now() + timedelta(weeks=520)
|
||||||
|
|
Reference in a new issue