Container Infrastructure Management Service for OpenStack
Go to file
Bertrand Lallau 798c7e35ef Use assertIn and assertNotIn
Tests should use:
  self.assertIn(value, list)
  self.assertNotIn(value, list)

instead of:
  self.assertTrue(value in list)
  self.assertFalse(value in list)

because assertIn and assertNotIn raise more meaningful errors:
  self.assertIn(3, [1, 2])
  >>> MismatchError: 3 not in [1, 2]

  self.assertTrue(3 in [1, 2])
  >>> AssertionError: False is not true

Closes-Bug: #1510007
Change-Id: If33252cc93c06a85e61871fb7b22b726f4a08500
2015-11-02 22:35:04 +01:00
contrib/templates/example Update Dev Quick-Start links to officail docs 2015-10-05 00:35:46 -07:00
devstack Update devstack doc to cover the latest atomic image 2015-10-26 14:59:37 +08:00
doc/source Kubectl configuration for certificates 2015-10-22 18:23:36 -07:00
etc/magnum Merge "Modify admin_api policy rule" 2015-10-09 22:30:02 +00:00
magnum Use assertIn and assertNotIn 2015-11-02 22:35:04 +01:00
specs Fix D001 Line too long error 2015-10-04 22:28:57 -07:00
.coveragerc Change ignore-errors to ignore_errors 2015-09-21 14:28:49 +00:00
.gitignore Add functional_creds.conf to .gitignore 2015-10-22 16:55:06 +09:00
.gitreview Update .gitreview for project rename 2015-03-28 00:20:40 +00:00
.mailmap Initial commit from github (squashed) 2014-11-18 09:23:37 -05:00
.testr.conf Make room for functional tests 2015-04-02 12:25:43 -04:00
CONTRIBUTING.rst Workflow documentation is now in infra-manual 2014-12-05 03:30:45 +00:00
Dockerfile Fix the docker build image issue 2015-05-18 11:11:25 +08:00
HACKING.rst Use assertIn and assertNotIn 2015-11-02 22:35:04 +01:00
LICENSE Initial commit from github (squashed) 2014-11-18 09:23:37 -05:00
MANIFEST.in Copy Ironic's database model codebase 2014-12-02 15:04:31 -07:00
README.rst Fix the representation of REST 2015-09-01 08:40:39 +05:30
babel.cfg Initial commit from github (squashed) 2014-11-18 09:23:37 -05:00
bandit.yaml Add Bandit security lint checking via tox 2015-04-08 10:41:42 -07:00
functional_creds.conf.sample Functional: Split python client functional testing case 2015-09-25 14:48:11 +08:00
openstack-common.conf port to oslo.service 2015-06-28 14:29:00 +08:00
requirements.txt Updated from global requirements 2015-10-28 22:06:30 +00:00
setup.cfg Add CertManager to store CA and client certificate 2015-09-05 16:25:57 +09:00
setup.py Updated from global requirements 2015-09-17 12:12:49 +00:00
test-requirements-bandit.txt Update bandit for new usage requirement 2015-04-10 11:19:17 +08:00
test-requirements.txt Updated from global requirements 2015-10-28 22:06:30 +00:00
tox.ini Refactor MagnumException to reduce complexity 2015-10-22 09:52:20 +01:00

README.rst

Magnum

Magnum is an OpenStack project which offers container orchestration engines for deploying and managing containers as first class resources in OpenStack.

For more information, please refer to the following resources: