Add Bionic and remove Zesty series and tests

Bionic, being the next LTS, is important to enable for dev
and test as early as possible ahead of 18.02.

Zesty goes EOL in Jan 2018. The next stable charms release (18.02)
will not provide Zesty series support, as it was an interim
(non-LTS) release.

Change-Id: I63403c8aacfd2da5195b0baac2fdb7c550a741e7
This commit is contained in:
Ryan Beisner 2017-12-05 05:32:53 +00:00
parent 0abe0c4b92
commit e579ac7a94
2 changed files with 2 additions and 2 deletions

View File

@ -9,8 +9,8 @@ tags:
- databases
series:
- xenial
- bionic
- artful
- zesty
- trusty
extra-bindings:
access:

View File

@ -4,5 +4,5 @@ import basic_deployment
if __name__ == "__main__":
t = basic_deployment.BasicDeployment(units=3, series='zesty')
t = basic_deployment.BasicDeployment(units=3, series='bionic')
t.run()