Enable cosmic gate test and disco dev test

Pending LP: #1823718 to enable disco gate test

Change-Id: I7fcd92968252499a25a2e4a85b049f15ab24587b
This commit is contained in:
Frode Nordahl 2019-04-03 11:58:51 +02:00
parent 16c0f4480b
commit 9b7d7d6a02
No known key found for this signature in database
GPG Key ID: 6A5D59A3BA48373F
2 changed files with 16 additions and 0 deletions

8
tests/dev-basic-disco Executable file
View File

@ -0,0 +1,8 @@
#!/usr/bin/env python
import basic_deployment
if __name__ == "__main__":
t = basic_deployment.BasicDeployment(units=3, series='disco')
t.run()

8
tests/gate-basic-cosmic Executable file
View File

@ -0,0 +1,8 @@
#!/usr/bin/env python
import basic_deployment
if __name__ == "__main__":
t = basic_deployment.BasicDeployment(units=3, series='cosmic')
t.run()