diff options
author | Gauvain Pocentek <gauvain@pocentek.net> | 2018-05-28 08:02:23 +0200 |
---|---|---|
committer | Gauvain Pocentek <gauvain@pocentek.net> | 2018-05-28 08:02:23 +0200 |
commit | 9c19e06dbb792308d2fcd4fff1239043981b5f61 (patch) | |
tree | 8a5482d466549514777a4dda426382a53f32198f /tools/python_test_v4.py | |
parent | 677961624fbc5ab190e581ae89c9f0317ac3029e (diff) | |
download | gitlab-9c19e06dbb792308d2fcd4fff1239043981b5f61.tar.gz |
Add support for environment stop()
Diffstat (limited to 'tools/python_test_v4.py')
-rw-r--r-- | tools/python_test_v4.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/python_test_v4.py b/tools/python_test_v4.py index 0551093..37f657a 100644 --- a/tools/python_test_v4.py +++ b/tools/python_test_v4.py @@ -432,6 +432,7 @@ env.external_url = 'http://new.env/whatever' env.save() env = admin_project.environments.list()[0] assert(env.external_url == 'http://new.env/whatever') +env.stop() env.delete() assert(len(admin_project.environments.list()) == 0) |