compose/tests/integration
alexrecuenco 4d3d9f64b9 Removed Python2 support
Closes: #6890

Some remarks,

- `# coding ... utf-8` statements are not needed
- isdigit on strings instead of a try-catch.
- Default opening mode is read, so we can do `open()` without the `'r'` everywhere
- Removed inheritinng from `object` class, it isn't necessary in python3.
- `super(ClassName, self)` can now be replaced with `super()`
- Use of itertools and `chain` on a couple places dealing with sets.
- Used the operator module instead of lambdas when warranted
    `itemgetter(0)` instead of `lambda x: x[0]`
    `attrgetter('name')` instead of `lambda x: x.name`
- `sorted` returns a list, so no need to use `list(sorted(...))`
- Removed `dict()` using dictionary comprehensions whenever possible
- Attempted to remove python3.2 support

Signed-off-by: alexrecuenco <alejandrogonzalezrecuenco@gmail.com>
2020-08-11 17:45:13 +07:00
..
__init__.py Split tests into unit and integration 2014-04-25 22:58:21 +01:00
environment_test.py Removed Python2 support 2020-08-11 17:45:13 +07:00
network_test.py Removed Python2 support 2020-06-03 17:37:47 +02:00
project_test.py Removed Python2 support 2020-08-11 17:45:13 +07:00
resilience_test.py Removed Python2 support 2020-08-11 17:45:13 +07:00
service_test.py Removed Python2 support 2020-08-11 17:45:13 +07:00
state_test.py Removed Python2 support 2020-08-11 17:45:13 +07:00
testcases.py Cleanup v*_only test decorators 2020-08-10 10:30:41 +02:00
volume_test.py Removed Python2 support 2020-08-11 17:45:13 +07:00