Juju Charm - Manila fileshare service
Go to file
Hervé Beraud 0c1b1f1a50 Use unittest.mock instead of mock
The mock third party library was needed for mock support in py2
runtimes. Since we now only support py36 and later, we can use the
standard lib unittest.mock module instead.

Note that https://github.com/openstack/charms.openstack is used during tests
and he need `mock`, unfortunatelly it doesn't declare `mock` in its
requirements so it retrieve mock from other charm project (cross dependency).
So we depend on charms.openstack first and when
Ib1ed5b598a52375e29e247db9ab4786df5b6d142 will be merged then CI
will pass without errors.

Depends-On: Ib1ed5b598a52375e29e247db9ab4786df5b6d142
Change-Id: I38b8a9d40577e97bf7c5e73630fc044c3356c902
2021-12-15 09:45:22 +00:00
src Add yoga bundles and release-tool syncs 2021-11-24 13:42:58 -05:00
unit_tests Use unittest.mock instead of mock 2021-12-15 09:45:22 +00:00
.gitignore Rebuild + .testr.conf -> .stestr.conf due to Bug #1718152 2017-11-23 14:22:24 +00:00
.gitreview OpenDev Migration Patch 2019-04-19 19:44:39 +00:00
.stestr.conf Rebuild + .testr.conf -> .stestr.conf due to Bug #1718152 2017-11-23 14:22:24 +00:00
.zuul.yaml [ussuri][goal] Updates for python 2.7 drop 2020-02-29 11:38:42 -06:00
HACKING.md First commit of manila charm 2016-12-02 13:50:04 +00:00
LICENSE First commit of manila charm 2016-12-02 13:50:04 +00:00
README.md Update docs to remove non-production notices 2020-01-30 17:22:53 +01:00
TODO.md First commit of manila charm 2016-12-02 13:50:04 +00:00
osci.yaml Add yoga bundles and release-tool syncs 2021-11-24 13:42:58 -05:00
pip.sh Add xena bundles 2021-10-07 11:55:15 +02:00
rebuild Add xena bundles 2021-10-07 11:55:15 +02:00
requirements.txt Add yoga bundles and release-tool syncs 2021-11-24 13:42:58 -05:00
test-requirements.txt Use unittest.mock instead of mock 2021-12-15 09:45:22 +00:00
tox.ini Add yoga bundles and release-tool syncs 2021-11-24 13:42:58 -05:00

README.md

Manila Source Charm

This repository is for the reactive, layered, Manila source charm.

Please see the src/README.md for details on the built Manila charm and how to use it.

Building the charm

To build the charm run the following command in the root of the repository:

$ tox -e build

The resultant built charm will be in the builds directory.

Development/Hacking of the charm

Please see HACKING.md in this directory.